HomeSort by relevance Sort by last modified time
    Searched refs:random (Results 201 - 225 of 296) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/v8/src/
platform.h 87 // Random is missing on both Visual Studio and MinGW.
88 int random();
  /external/wpa_supplicant/
os_internal.c 119 return random();
os_unix.c 131 return random();
  /external/wpa_supplicant_6/wpa_supplicant/src/utils/
os_internal.c 119 return random();
os_unix.c 170 return random();
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/lib/gcc/i686-unknown-linux-gnu/4.2.1/include/xorg/
servermd.h 437 * Use SysV random number generator.
439 #define random rand macro
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
JDKPKCS12KeyStore.java 105 protected SecureRandom random = new SecureRandom(); field in class:JDKPKCS12KeyStore
196 this.random = rand;
    [all...]
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeySourceScript.java 29 import java.util.Random;
138 public MonkeySourceScript(Random random, String filename, long throttle,
141 mQ = new MonkeyEventQueue(random, throttle, randomizeThrottle);
  /external/v8/test/mjsunit/
function-names.js 81 "random", "abs", "acos", "asin", "atan", "ceil", "cos", "exp", "floor",
fuzz-natives.js 86 var rand = Math.floor(Math.random() * (kArgObjects - i));
sparse-array-reverse.js 59 // CONG pseudo random number generator. Used for fuzzing the sparse array
  /frameworks/base/core/tests/coretests/src/android/os/
PerformanceCollectorTest.java 25 import java.util.Random;
375 Random random = new Random(); local
376 int period = minDuration + random.nextInt(maxDuration - minDuration);
  /libcore/luni/src/main/java/java/math/
BigInteger.java 30 import java.util.Random;
126 * Constructs a random non-negative {@code BigInteger} instance in the range
130 * @param random is the random number generator to be used.
133 public BigInteger(int numBits, Random random) {
144 digits[i] = random.nextInt();
154 * Constructs a random {@code BigInteger} instance in the range {@code [0,
159 * <p><b>Implementation Note:</b> the {@code Random} argument is ignored.
161 * cryptographically strong pseudo-random numbers
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
ClientHandshakeImpl.java 144 session.clientRandom = clientHello.random;
261 session.serverRandom = serverHello.random;
ServerHandshakeImpl.java 433 session.clientRandom = clientHello.random;
439 session.serverRandom = serverHello.random;
  /build/tools/droiddoc/templates/assets/
carousel.js 20 // shows a random application
28 // pick a random app and show it
30 var i = Math.floor(droidListLength*Math.random());
  /external/chromium/third_party/libevent/
poll.c 166 i = random() % nfds;
select.c 178 i = random() % (sop->event_fds+1);
  /external/kernel-headers/original/linux/
genhd.h 120 struct timer_rand_state *random; member in struct:gendisk
233 /* drivers/char/random.c */
  /external/v8/benchmarks/
base.js 84 // To make the benchmark results predictable, we replace Math.random
86 Math.random = (function() {
  /hardware/broadcom/wlan/bcm4329/src/dhd/sys/
dhd.h 44 #include <linux/random.h>
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
SignatureSpiTest.java 346 protected void engineInitSign(PrivateKey privateKey, SecureRandom random)
  /system/bluetooth/tools/
pipetest.c 128 int delay = (int)((double)random() * (10000000.0 / 2147483647.0));
  /external/protobuf/gtest/test/
gtest_unittest.cc 507 // Tests the Random class.
510 testing::internal::Random random(42);
512 random.Generate(0),
515 random.Generate(testing::internal::Random::kMaxRange + 1),
522 testing::internal::Random random(12345);
524 EXPECT_LT(random.Generate(kRange), kRange) << " for iteration " << i;
527 testing::internal::Random random2(testing::internal::Random::kMaxRange)
    [all...]
  /external/iproute2/doc/
api-ip6-flowlabels.tex 52 Flow labels must be uniformly distributed (pseudo-)random numbers,
120 support flow labels, this field is not zero, but a random number.
288 kernel will allocate new pseudo-random number. Otherwise, kernel will try

Completed in 8411 milliseconds

1 2 3 4 5 6 7 891011>>