Lines Matching defs:low
24 // low 64-bit parts of the result.
27 uint64_t low = static_cast<uint64_t>(p);
29 return low ^ high;
57 LIBC_INLINE void read_small_values(const void *ptr, size_t size, uint64_t &low,
62 low = static_cast<uint64_t>(read_little_endian<uint32_t>(&bytes[0]));
66 low = static_cast<uint64_t>(read_little_endian<uint16_t>(&bytes[0]));
71 low = static_cast<uint64_t>(bytes[0]);
74 low = 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;
134 low = read_little_endian<uint64_t>(&bytes[size - 16]);
136 update(low, high);
138 low = read_little_endian<uint64_t>(&bytes[0]);
140 update(low, high);
145 low = read_little_endian<uint64_t>(&bytes[0]);
147 update(low, high);
150 read_small_values(ptr, size, low, high);
151 update(low, high);