Lines Matching refs:low64

882     XXH64_hash_t low64;   /*!< `value & 0xFFFFFFFFFFFFFFFF` */  member
3292 r128.low64 = (xxh_u64)(product); in XXH_mult64to128()
3311 r128.low64 = product_low; in XXH_mult64to128()
3326 r128.low64 = lhs * rhs; in XXH_mult64to128()
3386 r128.low64 = lower; in XXH_mult64to128()
3406 return product.low64 ^ product.high64; in XXH3_mul128_fold64()
5034 h128.low64 = XXH64_avalanche(keyed_lo); in XXH3_len_1to3_128b()
5056 m128.high64 += (m128.low64 << 1); in XXH3_len_4to8_128b()
5057 m128.low64 ^= (m128.high64 >> 3); in XXH3_len_4to8_128b()
5059 m128.low64 = XXH_xorshift64(m128.low64, 35); in XXH3_len_4to8_128b()
5060 m128.low64 *= 0x9FB21C651E98DF25ULL; in XXH3_len_4to8_128b()
5061 m128.low64 = XXH_xorshift64(m128.low64, 28); in XXH3_len_4to8_128b()
5082 m128.low64 += (xxh_u64)(len - 1) << 54; in XXH3_len_9to16_128b()
5127 m128.low64 ^= XXH_swap64(m128.high64); in XXH3_len_9to16_128b()
5130 XXH128_hash_t h128 = XXH_mult64to128(m128.low64, XXH_PRIME64_2); in XXH3_len_9to16_128b()
5133 h128.low64 = XXH3_avalanche(h128.low64); in XXH3_len_9to16_128b()
5152 h128.low64 = XXH64_avalanche(seed ^ bitflipl); in XXH3_len_0to16_128b()
5165 acc.low64 += XXH3_mix16B (input_1, secret+0, seed); in XXH128_mix32B()
5166 acc.low64 ^= XXH_readLE64(input_2) + XXH_readLE64(input_2 + 8); in XXH128_mix32B()
5182 acc.low64 = len * XXH_PRIME64_1; in XXH3_len_17to128_128b()
5195 h128.low64 = acc.low64 + acc.high64; in XXH3_len_17to128_128b()
5196 h128.high64 = (acc.low64 * XXH_PRIME64_1) in XXH3_len_17to128_128b()
5199 h128.low64 = XXH3_avalanche(h128.low64); in XXH3_len_17to128_128b()
5217 acc.low64 = len * XXH_PRIME64_1; in XXH3_len_129to240_128b()
5226 acc.low64 = XXH3_avalanche(acc.low64); in XXH3_len_129to240_128b()
5244 h128.low64 = acc.low64 + acc.high64; in XXH3_len_129to240_128b()
5245 h128.high64 = (acc.low64 * XXH_PRIME64_1) in XXH3_len_129to240_128b()
5248 h128.low64 = XXH3_avalanche(h128.low64); in XXH3_len_129to240_128b()
5269 h128.low64 = XXH3_mergeAccs(acc, in XXH3_hashLong_128b_internal()
5459 h128.low64 = XXH3_mergeAccs(acc, in XXH3_128bits_digest()
5500 return (h1.low64 > h2.low64) - (h2.low64 > h1.low64); in XXH128_cmp()
5512 hash.low64 = XXH_swap64(hash.low64); in XXH128_canonicalFromHash()
5515 XXH_memcpy((char*)dst + sizeof(hash.high64), &hash.low64, sizeof(hash.low64)); in XXH128_canonicalFromHash()
5524 h.low64 = XXH_readBE64(src->digest + 8); in XXH128_hashFromCanonical()
5538 XXH_writeLE64( dst, XXH_readLE64(dst) ^ h128.low64 ); in XXH3_combine16()