Home
last modified time | relevance | path

Searched refs:XXH_mult32to64 (Results 1 – 1 of 1) sorted by relevance

/PHP-8.1/ext/hash/xxhash/
H A Dxxhash.h2556 # define XXH_mult32to64(x, y) __emulu((unsigned)(x), (unsigned)(y)) macro
2565 # define XXH_mult32to64(x, y) ((xxh_u64)(xxh_u32)(x) * (xxh_u64)(xxh_u32)(y)) macro
2665 xxh_u64 const lo_lo = XXH_mult32to64(lhs & 0xFFFFFFFF, rhs & 0xFFFFFFFF); in XXH_mult64to128()
2666 xxh_u64 const hi_lo = XXH_mult32to64(lhs >> 32, rhs & 0xFFFFFFFF); in XXH_mult64to128()
2667 xxh_u64 const lo_hi = XXH_mult32to64(lhs & 0xFFFFFFFF, rhs >> 32); in XXH_mult64to128()
2668 xxh_u64 const hi_hi = XXH_mult32to64(lhs >> 32, rhs >> 32); in XXH_mult64to128()
3516 xacc[i] += XXH_mult32to64(data_key & 0xFFFFFFFF, data_key >> 32); in XXH3_accumulate_512_scalar()
4333 …m128.high64 += (input_hi & 0xFFFFFFFF00000000ULL) + XXH_mult32to64((xxh_u32)input_hi, XXH_PRIME32_… in XXH3_len_9to16_128b()
4359 m128.high64 += input_hi + XXH_mult32to64((xxh_u32)input_hi, XXH_PRIME32_2 - 1); in XXH3_len_9to16_128b()

Completed in 20 milliseconds