Lines Matching defs:r128
641 XXH128_hash_t r128;
642 r128.low64 = (uint64_t)(product);
643 r128.high64 = (uint64_t)(product >> 64);
644 return r128;
661 XXH128_hash_t r128;
662 r128.low64 = product_low;
663 r128.high64 = product_high;
664 return r128;
676 XXH128_hash_t r128;
677 r128.low64 = lhs * rhs;
678 r128.high64 = __umulh(lhs, rhs);
679 return r128;
736 XXH128_hash_t r128;
737 r128.low64 = lower;
738 r128.high64 = upper;
739 return r128;