Lines Matching refs:p1
733 static uint64_t l3hash(uint64_t p1, uint64_t p2, in l3hash() argument
739 t = p1 >> 63; in l3hash()
740 p1 &= m63; in l3hash()
741 ADD128(p1, p2, len, t); in l3hash()
743 t = (p1 > m63) + ((p1 == m63) && (p2 == m64)); in l3hash()
744 ADD128(p1, p2, z, t); in l3hash()
745 p1 &= m63; in l3hash()
748 t = p1 + (p2 >> 32); in l3hash()
751 p1 += (t >> 32); in l3hash()
752 p2 += (p1 << 32); in l3hash()
755 p1 += k1; in l3hash()
756 p1 += (0 - (p1 < k1)) & 257; in l3hash()
761 MUL64(rh, rl, p1, p2); in l3hash()