HomeSort by relevance Sort by last modified time
    Searched refs:random (Results 1 - 25 of 3992) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
KeyGenerationParameters.java 10 private SecureRandom random; field in class:KeyGenerationParameters
17 * @param random the random byte source.
21 SecureRandom random,
24 this.random = random;
29 * return the random source associated with this
32 * @return the generators random source.
36 return random;
  /test/vts/utils/python/fuzzer/
FuzzerUtils.py 17 import random
20 shifter = random.randint(0, 31)
  /bionic/libc/bionic/
rand.cpp 19 // The BSD rand/srand is very weak. glibc just uses random/srandom instead.
24 return random();
  /external/apache-commons-math/src/main/java/org/apache/commons/math/random/
NormalizedRandomGenerator.java 18 package org.apache.commons.math.random;
21 * This interface represent a normalized random generator for
29 /** Generate a random scalar with null mean and unit standard deviation.
34 * @return a random scalar with null mean and unit standard deviation
RandomVectorGenerator.java 18 package org.apache.commons.math.random;
21 /** This interface represents a random generator for whole vectors.
30 /** Generate a random vector.
31 * @return a random vector as an array of double.
BitsStreamGenerator.java 17 package org.apache.commons.math.random;
22 /** Base class for random number generators that generates bits streams.
33 /** Creates a new random number generator.
54 * @param bits number of random bits to produce
55 * @return random bits generated
69 final int random = next(32); local
70 bytes[i] = (byte) (random & 0xff);
71 bytes[i + 1] = (byte) ((random >> 8) & 0xff);
72 bytes[i + 2] = (byte) ((random >> 16) & 0xff);
73 bytes[i + 3] = (byte) ((random >> 24) & 0xff)
76 int random = next(32); local
98 final double random; local
138 final int random = next(32) & mask; local
    [all...]
  /external/clang/test/Lexer/
msdos-cpm-eof.c 8 I am random garbage after ^Z
  /external/libcxx/test/libcxx/numerics/rand/rand.synopsis/
version.pass.cpp 10 // <random>
12 #include <random>
  /external/tensorflow/tensorflow/core/lib/random/
random.h 22 namespace random { namespace in namespace:tensorflow
24 // Return a 64-bit random value. Different sequences are generated
28 // Return a 64-bit random value. Uses
32 } // namespace random
exact_uniform_int.h 24 namespace random { namespace in namespace:tensorflow
27 UintType ExactUniformInt(const UintType n, const RandomBits& random) {
30 static_assert(std::is_same<UintType, decltype(random())>::value,
31 "random() should return UintType");
35 return random() * n;
38 return random() & (n - 1);
42 // random's output is uniform in the half-open interval [0, 2^{bits}).
56 rnd = random(); // rnd uniform over [0, 2^{bits})
80 } // namespace random
random_distributions.cc 16 #include "tensorflow/core/lib/random/distribution_sampler.h"
17 #include "tensorflow/core/lib/random/philox_random.h"
20 namespace random { namespace in namespace:tensorflow
26 } // namespace random
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/numerics/rand/rand.synopsis/
version.pass.cpp 10 // <random>
12 #include <random>
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
DSAParameterGenerationParameters.java 14 private final SecureRandom random; field in class:DSAParameterGenerationParameters
17 * Construct without a usage index, this will do a random construction of G.
22 * @param random the source of randomness to use.
28 SecureRandom random)
30 this(L, N, certainty, random, -1);
39 * @param random the source of randomness to use.
46 SecureRandom random,
53 this.random = random;
73 return random;
    [all...]
ParametersWithRandom.java 10 private SecureRandom random; field in class:ParametersWithRandom
15 SecureRandom random)
17 this.random = random;
29 return random;
  /external/slf4j/slf4j-api/src/test/java/org/slf4j/
Differentiator.java 28 import java.util.Random;
32 static Random random = new Random(System.currentTimeMillis()); field in class:Differentiator
35 return (short) random.nextInt(Short.MAX_VALUE);
  /libcore/ojluni/src/main/java/java/security/
AlgorithmParameterGeneratorSpi.java 62 * @param random the source of randomness.
64 protected abstract void engineInit(int size, SecureRandom random);
71 * @param random the source of randomness.
77 SecureRandom random)
KeyPairGeneratorSpi.java 62 * @param random the source of randomness for this generator.
67 public abstract void initialize(int keysize, SecureRandom random);
84 * @param random the source of randomness for this generator.
92 SecureRandom random)
  /libcore/ojluni/src/main/java/java/security/interfaces/
DSAKeyPairGenerator.java 37 * the random bit source.
80 * @param random the random bit source to use to generate key bits;
86 public void initialize(DSAParams params, SecureRandom random)
105 * @param random the random bit source to use to generate key bits;
115 public void initialize(int modlen, boolean genParams, SecureRandom random)
  /external/libcxx/test/std/numerics/rand/rand.device/
entropy.pass.cpp 10 // <random>
16 #include <random>
  /external/libcxx/test/std/numerics/rand/rand.util/rand.util.seedseq/
assign.fail.cpp 10 // <random>
16 #include <random>
copy.fail.cpp 10 // <random>
16 #include <random>
default.pass.cpp 10 // <random>
16 #include <random>
  /external/tensorflow/tensorflow/core/distributed_runtime/
request_id.cc 25 request_id = random::New64();
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/numerics/rand/rand.device/
entropy.pass.cpp 10 // <random>
16 #include <random>
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/numerics/rand/rand.util/rand.util.seedseq/
assign.fail.cpp 10 // <random>
16 #include <random>

Completed in 699 milliseconds

1 2 3 4 5 6 7 8 91011>>