OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RNG
(Results
1 - 5
of
5
) sorted by null
/packages/apps/Contacts/tests/src/com/android/contacts/tests/calllog/
FillCallLogTestActivity.java
50
private static final Random
RNG
= new Random();
171
return String.format("5%09d",
RNG
.nextInt(1000000000));
264
-
RNG
.nextInt(24 * 60 * 60 * (index + 1)) * 1000L);
267
values.put(Calls.DURATION,
RNG
.nextInt(30 * 60 * 60 * 1000));
271
values.put(Calls.TYPE, CALL_TYPES[
RNG
.nextInt(CALL_TYPES.length)]);
/development/samples/Snake/src/com/example/android/snake/
SnakeView.java
98
private static final Random
RNG
= new Random();
368
int newX = 1 +
RNG
.nextInt(mXTileCount - 2);
369
int newY = 1 +
RNG
.nextInt(mYTileCount - 2);
/external/openssh/contrib/cygwin/
Makefile
53
$(INSTALL) -m 644 $(srcdir)/WARNING.
RNG
$(DESTDIR)$(sshdocdir)/WARNING.
RNG
/external/dropbear/libtomcrypt/
crypt.tex
171
For example, consider a hardware platform with a specialized
RNG
device. Obviously one would like to tap
374
/* register the system
RNG
*/
377
/* make a 1024-bit RSA key with the system
RNG
*/
[
all
...]
/external/dropbear/libtommath/
bn.tex
143
If you do not have a ``/dev/urandom'' style
RNG
source you will have to write your own PRNG and simply pipe that into
[
all
...]
Completed in 181 milliseconds