Searched refs:kMul (Results 1 – 5 of 5) sorted by relevance
53 uint32_t nextU() { uint32_t r = fSeed * kMul + kAdd; fSeed = r; return r; } in nextU()66 kMul = 1664525, enumerator
165 static uint32_t NextLCG(uint32_t seed) { return kMul*seed + kAdd; } in NextLCG()170 kMul = 1664525, enumerator
182 const uint64_t kMul = 0x9ddfea08eb382d69ULL; in hash_16_bytes() local183 uint64_t a = (low ^ high) * kMul; in hash_16_bytes()185 uint64_t b = (high ^ a) * kMul; in hash_16_bytes()187 b *= kMul; in hash_16_bytes()
1299 return Bytecode::kMul; in BytecodeForBinaryOperation()
865 case HValue::kMul: in CanDeoptimize()