HomeSort by relevance Sort by last modified time
    Searched defs:Random (Results 1 - 25 of 82) sorted by null

1 2 3 4

  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
random.c 18 * File: random.c *
20 * Description: Signed 16 bits random generator *
27 Word16 Random(Word16 * seed)
  /prebuilts/go/darwin-x86/doc/progs/
cgo1.go 13 func Random() int {
cgo2.go 12 func Random() int {
  /prebuilts/go/linux-x86/doc/progs/
cgo1.go 13 func Random() int {
cgo2.go 12 func Random() int {
  /external/webrtc/webrtc/base/
random.h 22 class Random {
24 explicit Random(uint64_t seed);
26 // Return pseudo-random integer of the specified type.
38 // Uniformly distributed pseudo-random number in the interval [0, t].
41 // Uniformly distributed pseudo-random number in the interval [low, high].
44 // Uniformly distributed pseudo-random number in the interval [low, high].
54 // Outputs a nonzero 64-bit random number.
65 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(Random);
68 // Return pseudo-random number in the interval [0.0, 1.0).
70 float Random::Rand<float>()
    [all...]
random.cc 10 #include "webrtc/base/random.h"
18 Random::Random(uint64_t seed) {
23 uint32_t Random::Rand(uint32_t t) {
36 uint32_t Random::Rand(uint32_t low, uint32_t high) {
41 int32_t Random::Rand(int32_t low, int32_t high) {
51 float Random::Rand<float>() {
58 double Random::Rand<double>() {
65 bool Random::Rand<bool>() {
69 double Random::Gaussian(double mean, double standard_deviation)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3859424/prebuilt_include/llvm/lib/Fuzzer/
FuzzerRandom.h 9 // fuzzer::Random
15 #include <random>
18 class Random {
20 Random(unsigned int seed) : R(seed) {}
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/lib/Fuzzer/
FuzzerRandom.h 9 // fuzzer::Random
15 #include <random>
18 class Random : public std::mt19937 {
20 Random(unsigned int seed) : std::mt19937(seed) {}
  /prebuilts/clang/host/linux-x86/clang-4393122/prebuilt_include/llvm/lib/Fuzzer/
FuzzerRandom.h 9 // fuzzer::Random
15 #include <random>
18 class Random : public std::mt19937 {
20 Random(unsigned int seed) : std::mt19937(seed) {}
  /prebuilts/clang/host/linux-x86/clang-4479392/prebuilt_include/llvm/lib/Fuzzer/
FuzzerRandom.h 9 // fuzzer::Random
15 #include <random>
18 class Random : public std::mt19937 {
20 Random(unsigned int seed) : std::mt19937(seed) {}
  /prebuilts/clang/host/linux-x86/clang-4579689/prebuilt_include/llvm/lib/Fuzzer/
FuzzerRandom.h 9 // fuzzer::Random
15 #include <random>
18 class Random : public std::mt19937 {
20 Random(unsigned int seed) : std::mt19937(seed) {}
  /prebuilts/clang/host/linux-x86/clang-4630689/prebuilt_include/llvm/lib/Fuzzer/
FuzzerRandom.h 9 // fuzzer::Random
15 #include <random>
18 class Random : public std::mt19937 {
20 Random(unsigned int seed) : std::mt19937(seed) {}
  /prebuilts/clang/host/linux-x86/clang-4639204/prebuilt_include/llvm/lib/Fuzzer/
FuzzerRandom.h 9 // fuzzer::Random
15 #include <random>
18 class Random : public std::mt19937 {
20 Random(unsigned int seed) : std::mt19937(seed) {}
  /prebuilts/clang/host/linux-x86/clang-4691093/prebuilt_include/llvm/lib/Fuzzer/
FuzzerRandom.h 9 // fuzzer::Random
15 #include <random>
18 class Random : public std::mt19937 {
20 Random(unsigned int seed) : std::mt19937(seed) {}
  /test/vts-testcase/fuzz/iface_fuzzer/include/
ProtoFuzzerUtils.h 22 #include <random>
51 // 64-bit random number generator.
52 class Random {
54 Random(uint64_t seed) : rand_(seed) {}
55 virtual ~Random() {}
57 // Generates a 64-bit random number.
59 // Generates a random number in range [0, n).
63 // Used to generate a 64-bit Mersenne Twister pseudo-random number.
79 // Seed used to initialize the random number generator.
  /external/eigen/Eigen/src/Core/
Random.h 19 inline const Scalar operator() () const { return random<Scalar>(); }
28 /** \returns a random matrix expression
39 * it is redundant to pass \a rows and \a cols as arguments, so Random() should be used
48 * behavior with expressions involving random matrices.
50 * See DenseBase::NullaryExpr(Index, const CustomNullaryOp&) for an example using C++11 random generators.
52 * \sa DenseBase::setRandom(), DenseBase::Random(Index), DenseBase::Random()
56 DenseBase<Derived>::Random(Index rows, Index cols)
61 /** \returns a random vector expression
73 * it is redundant to pass \a size as argument, so Random() should be use
    [all...]
  /external/skia/bench/
RectoriBench.cpp 29 SkRandom Random;
32 SkScalar blurSigma = Random.nextRangeScalar(1.5f, 25.0f);
33 SkScalar size = Random.nextRangeScalar(20*blurSigma, 50*blurSigma);
35 SkScalar x = Random.nextRangeScalar(0.0f, W - size);
36 SkScalar y = Random.nextRangeScalar(0.0f, H - size);
56 paint.setColor(0xff000000 | Random.nextU());
  /external/skqp/bench/
RectoriBench.cpp 29 SkRandom Random;
32 SkScalar blurSigma = Random.nextRangeScalar(1.5f, 25.0f);
33 SkScalar size = Random.nextRangeScalar(20*blurSigma, 50*blurSigma);
35 SkScalar x = Random.nextRangeScalar(0.0f, W - size);
36 SkScalar y = Random.nextRangeScalar(0.0f, H - size);
56 paint.setColor(0xff000000 | Random.nextU());
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
unittest.h 94 class Random {
96 Random(unsigned seed = 0) : mSeed(seed) {}
  /external/deqp/framework/delibs/decpp/
deRandom.hpp 23 * \brief Random number generator utilities.
35 //! Random self-test - compare returned values against hard-coded values.
38 class Random
41 Random (deUint32 seed) { deRandom_init(&m_rnd, seed); }
42 ~Random (void) {}
70 bool operator== (const Random& other) const;
71 bool operator!= (const Random& other) const;
79 inline float Random::getFloat (float min, float max)
85 inline double Random::getDouble (double min, double max)
91 inline int Random::getInt (int min, int max
    [all...]
  /external/gemmlowp/test/
test.h 27 #include <random>
100 int Random() {
113 (*m)(r, c) = Random() % OperandRange::kMaxValue;
  /external/freetype/src/tools/ftfuzzer/
ftfuzzer.cc 78 // We want to select n values at random (without repetition),
81 struct Random
89 uint32_t r; // the current pseudo-random number
91 Random( int n_,
278 Random faces_pool( (int)max_face_cnt, (int)num_faces );
303 Random instances_pool( (int)max_instance_cnt, (int)num_instances );
356 Random sizes_pool( max_size_cnt, face->num_fixed_sizes );
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
random.py 0 """Random variable generators.
9 pick random element
10 pick random sample
11 generate random permutation
37 * The random() method is implemented in C, executes in a single Python step,
51 __all__ = ["Random","seed","random","uniform","randint","choice","sample",
72 class Random(_random.Random):
73 """Random number generator base class used by bound module functions.
690 def random(self): member in class:WichmannHill
813 def random(self): member in class:SystemRandom
887 random = _inst.random variable
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
random.py 0 """Random variable generators.
9 pick random element
10 pick random sample
11 generate random permutation
37 * The random() method is implemented in C, executes in a single Python step,
51 __all__ = ["Random","seed","random","uniform","randint","choice","sample",
72 class Random(_random.Random):
73 """Random number generator base class used by bound module functions.
688 def random(self): member in class:WichmannHill
811 def random(self): member in class:SystemRandom
885 random = _inst.random variable
    [all...]

Completed in 388 milliseconds

1 2 3 4