HomeSort by relevance Sort by last modified time
    Searched defs:PRNG (Results 1 - 3 of 3) sorted by null

  /system/update_engine/update_manager/
prng.h 28 class PRNG {
31 explicit PRNG(uint32_t seed) : gen_(seed) {}
46 DISALLOW_COPY_AND_ASSIGN(PRNG);
  /external/swiftshader/third_party/subzero/crosstest/
vectors.h 100 // TODO: Replace with a portable PRNG from C++11.
101 class PRNG {
103 explicit PRNG(uint32_t Seed = 1) : State(Seed) {}
  /external/llvm/lib/Transforms/Utils/
MetaRenamer.cpp 29 // This PRNG is from the ISO C spec. It is intentionally simple and
32 struct PRNG {
53 prng.srand(seed);
57 return metaNames[prng.rand() % array_lengthof(metaNames)];
60 PRNG prng; member in struct:__anon28139::Renamer
74 // Seed our PRNG with simple additive sum of ModuleID. We're looking to

Completed in 251 milliseconds