Searched refs:kMul (Results 1 – 4 of 4) sorted by relevance
165 static uint32_t NextLCG(uint32_t seed) { return kMul*seed + kAdd; } in NextLCG()170 kMul = 1664525, enumerator
52 uint32_t nextU() { uint32_t r = fSeed * kMul + kAdd; fSeed = r; return r; } in nextU()65 kMul = 1664525, enumerator
181 const uint64_t kMul = 0x9ddfea08eb382d69ULL; in hash_16_bytes() local182 uint64_t a = (low ^ high) * kMul; in hash_16_bytes()184 uint64_t b = (high ^ a) * kMul; in hash_16_bytes()186 b *= kMul; in hash_16_bytes()
886 case HValue::kMul: in CanDeoptimize()