* Provides a XOR of the given int64 values(provided as tuple of two int32). * Result is written back to the first value
(m: number[], n: number[])
| 125 | * Result is written back to the first value |
| 126 | */ |
| 127 | function x64Xor(m: number[], n: number[]): void { |
| 128 | m[0] ^= n[0] |
| 129 | m[1] ^= n[1] |
| 130 | } |
| 131 | |
| 132 | const F1 = [0xff51afd7, 0xed558ccd] |
| 133 | const F2 = [0xc4ceb9fe, 0x1a85ec53] |
no outgoing calls
no test coverage detected
searching dependent graphs…