HomeSort by relevance Sort by last modified time
    Searched full:random (Results 101 - 125 of 1680) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/netfilter/
xt_statistic.h 33 } random; member in union:xt_statistic_info::__anon14370
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/netfilter/
xt_statistic.h 33 } random; member in union:xt_statistic_info::__anon14789
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/netfilter/
xt_statistic.h 33 } random; member in union:xt_statistic_info::__anon15152
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/netfilter/
xt_statistic.h 33 } random; member in union:xt_statistic_info::__anon15576
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
KeyPairGenerator1Test.java 410 * <code>initialize(int keysize, SecureRandom random)</code>
412 * <code>initialize(AlgorithmParameterSpec param, SecureRandom random)</code>
452 SecureRandom random = new SecureRandom(); local
460 kpg[i].initialize(keys[j], random);
467 kpg[i].initialize(aps, random);
475 * <code>initialize(int keysize, SecureRandom random)</code>
477 * <code>initialize(AlgorithmParameterSpec param, SecureRandom random)</code>
513 SecureRandom random = new SecureRandom(); local
530 mKPG.initialize(keys[i], random);
538 fail("InvalidParameterException must be thrown when random is null")
615 SecureRandom random = new SecureRandom(); local
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/generators/
DESedeKeyGenerator.java 21 this.random = param.getRandom();
48 random.nextBytes(newKey);
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/paddings/
BlockCipherPadding.java 15 * @param random the source of randomness for the padding, if required.
17 public void init(SecureRandom random)
ISO7816d4Padding.java 17 * @param random - a SecureRandom if available.
19 public void init(SecureRandom random)
PKCS7Padding.java 16 * @param random - a SecureRandom if available.
18 public void init(SecureRandom random)
ZeroBytePadding.java 16 * @param random - a SecureRandom if available.
18 public void init(SecureRandom random)
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
JCEKeyGenerator.java 38 SecureRandom random)
45 SecureRandom random)
47 if (random != null)
49 engine.init(new KeyGenerationParameters(random, defaultKeySize));
56 SecureRandom random)
60 engine.init(new KeyGenerationParameters(random, keySize));
115 SecureRandom random)
117 super.engineInit(keySize, random);
JCEDHKeyAgreement.java 34 private SecureRandom random; field in class:JCEDHKeyAgreement
166 SecureRandom random)
175 this.random = random;
199 SecureRandom random)
209 this.random = random;
  /external/chromium/third_party/icu/source/test/intltest/
nmfmtrt.h 57 * Return a random uint32_t
62 * Return a random double 0 <= x < 1.0
  /external/chromium/third_party/zlib/contrib/minizip/
crypt.h 33 * Return the next byte in the pseudo-random sequence
62 * Initialize the encryption keys and the random header according to
98 int n; /* index in random header */
100 int c; /* random byte */
101 unsigned char header[RAND_HEAD_LEN-2]; /* random header */
102 static unsigned calls = 0; /* ensure different random header each time */
107 /* First generate RAND_HEAD_LEN-2 random bytes. We encrypt the
121 /* Encrypt random header (last two bytes is high word of crc) */
  /external/dropbear/libtommath/
bn_mp_rand.c 18 /* makes a pseudo-random int of a given size */
30 /* first place a random non-zero digit */
  /external/icu4c/test/intltest/
nmfmtrt.h 57 * Return a random uint32_t
62 * Return a random double 0 <= x < 1.0
  /external/iptables/extensions/
libipt_statistic.c 16 " --mode mode Match mode (random, nth)\n"
17 " random mode:\n"
53 if (!strcmp(optarg, "random"))
68 info->u.random.probability = 0x80000000 * prob;
106 "both nth and random parameters given");
109 "--probability can only be used in random mode");
127 printf("%smode random %sprobability %f ", prefix, prefix,
128 1.0 * info->u.random.probability / 0x80000000);
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/Statements/
try-005.js 25 TryToCatch( "Thrower(\"some random exception\")", "Caught some random exception" );
  /external/webkit/WebKitTools/iExploder/htdocs/
index.html 14 <li><a href="iexploder.cgi?random=1">Start test sequence in random</a></li>
  /external/zlib/contrib/minizip/
crypt.h 33 * Return the next byte in the pseudo-random sequence
62 * Initialize the encryption keys and the random header according to
97 int n; /* index in random header */
99 int c; /* random byte */
100 unsigned char header[RAND_HEAD_LEN-2]; /* random header */
101 static unsigned calls = 0; /* ensure different random header each time */
106 /* First generate RAND_HEAD_LEN-2 random bytes. We encrypt the
120 /* Encrypt random header (last two bytes is high word of crc) */
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
MediaPlayerStressTest.java 31 import java.util.Random;
60 Random generator = new Random(randomseed);
61 Log.v(TAG, "Random seed: " + randomseed);
97 Random generator = new Random(randomseed);
98 Log.v(TAG, "Random seed: " + randomseed);
118 // Play for 10 seconds then random seekTo
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
MyKeyPairGenerator2.java 56 public void initialize(int keysize, SecureRandom random) {
61 secureRandom = random;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audioquality/experiments/
GlitchExperiment.java 26 import java.util.Random;
65 Random random = new Random(); local
67 samples[random.nextInt(samples.length)] = 0;
  /libcore/luni/src/main/java/java/security/
SecureRandom.java 20 import java.util.Random;
26 * This class generates cryptographically secure pseudo-random numbers.
42 * A seed is an array of bytes used to bootstrap random number generation.
43 * To produce cryptographically secure random numbers, both the seed and the
52 * #setSeed} before any random numbers have been generated. Specifying a fixed
56 * <p>Although it is common practice to seed {@link Random} with the current
61 * been used to generate random numbers (ie. calling {#link nextBytes}) will
65 public class SecureRandom extends Random {
266 if (seed == 0) { // skip call from Random
283 * Generates and stores random bytes in the given {@code byte[]} for eac
    [all...]
  /frameworks/base/core/java/android/util/
MathUtils.java 19 import java.util.Random;
27 private static final Random sRandom = new Random();
155 public static int random(int howbig) { method in class:MathUtils
159 public static int random(int howsmall, int howbig) { method in class:MathUtils
164 public static float random(float howbig) { method in class:MathUtils
168 public static float random(float howsmall, float howbig) { method in class:MathUtils

Completed in 1299 milliseconds

1 2 3 45 6 7 8 91011>>