Searched refs:kMul (Results 1 – 3 of 3) sorted by relevance
29 uint32_t nextU() { uint32_t r = fSeed * kMul + kAdd; fSeed = r; return r; } in nextU()148 kMul = 1664525, enumerator305 static uint32_t NextLCG(uint32_t seed) { return kMul*seed + kAdd; } in NextLCG()310 kMul = 1664525, enumerator
29 uint32_t nextU() { uint32_t r = fSeed * kMul + kAdd; fSeed = r; return r; } in nextU()96 kMul = 1664525, enumerator
187 const uint64_t kMul = 0x9ddfea08eb382d69ULL; in hash_16_bytes() local188 uint64_t a = (low ^ high) * kMul; in hash_16_bytes()190 uint64_t b = (high ^ a) * kMul; in hash_16_bytes()192 b *= kMul; in hash_16_bytes()