Lines Matching full:prng
135 * Figure out if the PRNG has been modified. Since the increment of the PRNG has
137 * @param r The PRNG.
138 * @return True if the PRNG has *not* been modified, false otherwise.
143 * Return true if the PRNG has not been seeded yet.
144 * @param r The PRNG.
145 * @return True if the PRNG has not been seeded yet, false otherwise.
224 * Figure out if the PRNG has been modified. Since the increment of the PRNG has
226 * @param r The PRNG.
227 * @return True if the PRNG has *not* been modified, false otherwise.
232 * Return true if the PRNG has not been seeded yet.
233 * @param r The PRNG.
234 * @return True if the PRNG has not been seeded yet, false otherwise.
345 * Figure out if the PRNG has been modified. Since the increment of the PRNG has
347 * @param r The PRNG.
348 * @return True if the PRNG has *not* been modified, false otherwise.
353 * Return true if the PRNG has not been seeded yet.
354 * @param r The PRNG.
355 * @return True if the PRNG has not been seeded yet, false otherwise.
421 /// The actual RNG data. These are the actual PRNG's.
432 /// The public PRNG. This is just a stack of PRNG's to maintain the globals
436 /// The stack of PRNG's.
461 * Returns a random integer from the PRNG.
462 * @param r The PRNG.
469 * Returns a random integer from the PRNG bounded by @a bound. Bias is
471 * @param r The PRNG.
479 * Seed the PRNG with the state in two parts and the increment in two parts.
480 * @param r The PRNG.
490 * Pushes a new PRNG onto the PRNG stack.
491 * @param r The PRNG.
497 * Pops one or all but one items off of the PRNG stack.
498 * @param r The PRNG.
499 * @param reset True if all but one PRNG should be popped off the stack, false
506 * Returns, via pointers, the state of the PRNG in pieces.
507 * @param r The PRNG.
517 * Seed the PRNG with random data.
518 * @param rng The PRNG.