Lines Matching defs:high
23 // This function multiplies two 64-bit integers and xor the high and
28 uint64_t high = static_cast<uint64_t>(p >> 64);
29 return low ^ high;
58 uint64_t &high) {
63 high =
67 high = static_cast<uint64_t>(bytes[size - 1]);
72 high = static_cast<uint64_t>(bytes[0]);
75 high = 0;
102 LIBC_INLINE void update(uint64_t low, uint64_t high) {
104 folded_multiply(low ^ extra_keys[0], high ^ extra_keys[1]);
130 uint64_t low, high;
135 high = read_little_endian<uint64_t>(&bytes[size - 8]);
136 update(low, high);
139 high = read_little_endian<uint64_t>(&bytes[8]);
140 update(low, high);
146 high = read_little_endian<uint64_t>(&bytes[size - 8]);
147 update(low, high);
150 read_small_values(ptr, size, low, high);
151 update(low, high);