Lines Matching refs:low64

882     XXH64_hash_t low64;   /*!< `value & 0xFFFFFFFFFFFFFFFF` */  member
3261 r128.low64 = (xxh_u64)(product); in XXH_mult64to128()
3280 r128.low64 = product_low; in XXH_mult64to128()
3295 r128.low64 = lhs * rhs; in XXH_mult64to128()
3355 r128.low64 = lower; in XXH_mult64to128()
3375 return product.low64 ^ product.high64; in XXH3_mul128_fold64()
5003 h128.low64 = XXH64_avalanche(keyed_lo); in XXH3_len_1to3_128b()
5025 m128.high64 += (m128.low64 << 1); in XXH3_len_4to8_128b()
5026 m128.low64 ^= (m128.high64 >> 3); in XXH3_len_4to8_128b()
5028 m128.low64 = XXH_xorshift64(m128.low64, 35); in XXH3_len_4to8_128b()
5029 m128.low64 *= 0x9FB21C651E98DF25ULL; in XXH3_len_4to8_128b()
5030 m128.low64 = XXH_xorshift64(m128.low64, 28); in XXH3_len_4to8_128b()
5051 m128.low64 += (xxh_u64)(len - 1) << 54; in XXH3_len_9to16_128b()
5096 m128.low64 ^= XXH_swap64(m128.high64); in XXH3_len_9to16_128b()
5099 XXH128_hash_t h128 = XXH_mult64to128(m128.low64, XXH_PRIME64_2); in XXH3_len_9to16_128b()
5102 h128.low64 = XXH3_avalanche(h128.low64); in XXH3_len_9to16_128b()
5121 h128.low64 = XXH64_avalanche(seed ^ bitflipl); in XXH3_len_0to16_128b()
5134 acc.low64 += XXH3_mix16B (input_1, secret+0, seed); in XXH128_mix32B()
5135 acc.low64 ^= XXH_readLE64(input_2) + XXH_readLE64(input_2 + 8); in XXH128_mix32B()
5151 acc.low64 = len * XXH_PRIME64_1; in XXH3_len_17to128_128b()
5164 h128.low64 = acc.low64 + acc.high64; in XXH3_len_17to128_128b()
5165 h128.high64 = (acc.low64 * XXH_PRIME64_1) in XXH3_len_17to128_128b()
5168 h128.low64 = XXH3_avalanche(h128.low64); in XXH3_len_17to128_128b()
5186 acc.low64 = len * XXH_PRIME64_1; in XXH3_len_129to240_128b()
5195 acc.low64 = XXH3_avalanche(acc.low64); in XXH3_len_129to240_128b()
5213 h128.low64 = acc.low64 + acc.high64; in XXH3_len_129to240_128b()
5214 h128.high64 = (acc.low64 * XXH_PRIME64_1) in XXH3_len_129to240_128b()
5217 h128.low64 = XXH3_avalanche(h128.low64); in XXH3_len_129to240_128b()
5238 h128.low64 = XXH3_mergeAccs(acc, in XXH3_hashLong_128b_internal()
5428 h128.low64 = XXH3_mergeAccs(acc, in XXH3_128bits_digest()
5469 return (h1.low64 > h2.low64) - (h2.low64 > h1.low64); in XXH128_cmp()
5481 hash.low64 = XXH_swap64(hash.low64); in XXH128_canonicalFromHash()
5484 XXH_memcpy((char*)dst + sizeof(hash.high64), &hash.low64, sizeof(hash.low64)); in XXH128_canonicalFromHash()
5493 h.low64 = XXH_readBE64(src->digest + 8); in XXH128_hashFromCanonical()
5507 XXH_writeLE64( dst, XXH_readLE64(dst) ^ h128.low64 ); in XXH3_combine16()