Home
last modified time | relevance | path

Searched refs:kMul (Results 1 – 3 of 3) sorted by relevance

/external/skia/include/utils/
DSkRandom.h29 uint32_t nextU() { uint32_t r = fSeed * kMul + kAdd; fSeed = r; return r; } in nextU()
148 kMul = 1664525, enumerator
305 static uint32_t NextLCG(uint32_t seed) { return kMul*seed + kAdd; } in NextLCG()
310 kMul = 1664525, enumerator
/external/skia/legacy/include/core/
DSkRandom.h29 uint32_t nextU() { uint32_t r = fSeed * kMul + kAdd; fSeed = r; return r; } in nextU()
96 kMul = 1664525, enumerator
/external/llvm/include/llvm/ADT/
DHashing.h187 const uint64_t kMul = 0x9ddfea08eb382d69ULL; in hash_16_bytes() local
188 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()