Lines Matching refs:r128
4381 XXH128_hash_t r128;
4382 r128.low64 = (xxh_u64)(product);
4383 r128.high64 = (xxh_u64)(product >> 64);
4384 return r128;
4400 XXH128_hash_t r128;
4401 r128.low64 = product_low;
4402 r128.high64 = product_high;
4403 return r128;
4415 XXH128_hash_t r128;
4416 r128.low64 = lhs * rhs;
4417 r128.high64 = __umulh(lhs, rhs);
4418 return r128;
4475 XXH128_hash_t r128;
4476 r128.low64 = lower;
4477 r128.high64 = upper;
4478 return r128;