Home | History | Annotate | Download | only in quic

Lines Matching full:hash

26   uint64 hash = kOffset;
29 hash = hash ^ octets[i];
30 hash = hash * kPrime;
33 return hash;
38 // The following two constants are defined as part of the hash algorithm.
48 uint128 hash = kOffset;
51 hash = hash ^ uint128(0, octets[i]);
52 hash = hash * kPrime;
55 return hash;