MCPcopy
hub / github.com/fingerprintjs/fingerprintjs / x64Xor

Function x64Xor

src/utils/hashing.ts:127–130  ·  view source on GitHub ↗

* 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[])

Source from the content-addressed store, hash-verified

125 * Result is written back to the first value
126 */
127function x64Xor(m: number[], n: number[]): void {
128 m[0] ^= n[0]
129 m[1] ^= n[1]
130}
131
132const F1 = [0xff51afd7, 0xed558ccd]
133const F2 = [0xc4ceb9fe, 0x1a85ec53]

Callers 2

x64FmixFunction · 0.85
x64hash128Function · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…