HomeSort by: relevance | last modified time | path
    Searched defs:Random (Results 1 - 6 of 6) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerRandom.h 9 // fuzzer::Random
15 #include <random>
18 class Random : public std::mt19937 {
20 Random(unsigned int seed) : std::mt19937(seed) {}
  /src/external/apache2/llvm/dist/libcxx/benchmarks/
algorithms.bench.cpp 5 #include <random>
36 Random,
44 static constexpr const char* Names[] = {"Random", "Ascending",
109 case Order::Random: {
  /src/external/apache2/llvm/dist/llvm/tools/llvm-stress/
llvm-stress.cpp 1 //===- llvm-stress.cpp - Generate random LL files to stress-test LLVM -----===//
9 // This program is a utility that generates random .ll files to stress-test
104 /// A utility class to provide a pseudo-random number generator which is
108 class Random {
111 Random(unsigned _seed):Seed(_seed) {}
113 /// Return a random integer, up to a
118 // Only lowest 19 bits are random-ish.
122 /// Return a random 64 bit integer.
136 /// Make this like a C++11 random device
144 assert(Val <= max() && "Random value out of range")
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-internal.h 828 // A simple Linear Congruential Generator for generating random
831 // code). Unlike rand_r(), it's portable. An LCG isn't very random,
833 class GTEST_API_ Random {
837 explicit Random(UInt32 seed) : state_(seed) {}
841 // Generates a random number from [0, range). Crashes if 'range' is
847 GTEST_DISALLOW_COPY_AND_ASSIGN_(Random);
  /src/external/gpl3/gcc/dist/contrib/
paranoia.cc 121 2940-2950 Random
1009 FLOAT Random ();
1701 printf ("Testing on %d random pairs.\n", NoTrials);
1707 X = Random ();
1708 Y = Random ();
2425 /* Random computes
2432 Paranoia<FLOAT>::Random ()
  /src/external/gpl3/gcc.old/dist/contrib/
paranoia.cc 121 2940-2950 Random
1009 FLOAT Random ();
1701 printf ("Testing on %d random pairs.\n", NoTrials);
1707 X = Random ();
1708 Y = Random ();
2425 /* Random computes
2432 Paranoia<FLOAT>::Random ()

Completed in 79 milliseconds