| 2865 | } |
| 2866 | |
| 2867 | void fxBigInt64Setter(txMachine* the, txSlot* data, txInteger offset, txSlot* slot, int endian) |
| 2868 | { |
| 2869 | txS8 value = (txS8)fxToBigInt64(the, slot); |
| 2870 | #ifdef mxMisalignedSettersCrash |
| 2871 | value = EXPORT(S64); |
| 2872 | c_memcpy(data->value.arrayBuffer.address + offset, &value, sizeof(txS8)); |
| 2873 | #else |
| 2874 | *((txS8*)(data->value.arrayBuffer.address + offset)) = EXPORT(S64); |
| 2875 | #endif |
| 2876 | mxMeterOne(); |
| 2877 | } |
| 2878 | |
| 2879 | int fxBigUint64Compare(const void* p, const void* q) |
| 2880 | { |
nothing calls this directly
no test coverage detected