Lines Matching refs:RNG
20 RNG::RNG() in RNG() function in angle::RNG
27 RNG::RNG(unsigned int seed) : mGenerator(seed) {} in RNG() function in angle::RNG
29 RNG::~RNG() {} in ~RNG()
31 void RNG::reseed(unsigned int newSeed) in reseed()
36 bool RNG::randomBool(float probTrue) in randomBool()
42 int RNG::randomInt() in randomInt()
48 int RNG::randomIntBetween(int min, int max) in randomIntBetween()
54 unsigned int RNG::randomUInt() in randomUInt()
60 float RNG::randomFloat() in randomFloat()
66 float RNG::randomFloatBetween(float min, float max) in randomFloatBetween()
72 float RNG::randomFloatNonnegative() in randomFloatNonnegative()
79 float RNG::randomNegativeOneToOne() in randomNegativeOneToOne()