OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:srandom
(Results
1 - 25
of
176
) sorted by null
1
2
3
4
5
6
7
8
/external/e2fsprogs/lib/uuid/
configure.in
9
AC_CHECK_FUNCS(
srandom
)
/frameworks/base/core/java/android/util/
MathUtils.java
27
private static final Random
sRandom
= new Random();
160
return (int) (
sRandom
.nextFloat() * howbig);
165
return (int) (
sRandom
.nextFloat() * (howbig - howsmall) + howsmall);
169
return
sRandom
.nextFloat() * howbig;
174
return
sRandom
.nextFloat() * (howbig - howsmall) + howsmall;
178
sRandom
.setSeed(seed);
/bionic/tests/
property_benchmark.cpp
56
srandom
(nprops);
119
srandom
(iters * nprops);
139
srandom
(iters * nprops);
stdlib_test.cpp
42
srandom
(0x01020304);
/frameworks/compile/mclinker/lib/Support/Unix/
System.inc
77
///
srandom
- set the initial seed value for future calls to random().
80
::
srandom
(pSeed);
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
Xw32defs.h
55
#define
srandom
srand
macro
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xw32defs.h
55
#define
srandom
srand
macro
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xw32defs.h
55
#define
srandom
srand
macro
/external/arduino/hardware/arduino/cores/arduino/
WMath.cpp
33
srandom
(seed);
/external/libyuv/files/unit_test/
unit_test.h
48
#define
srandom
srand
macro
compare_test.cc
173
srandom
(time(NULL));
292
srandom
(time(NULL));
423
srandom
(time(NULL));
/frameworks/compile/mclinker/lib/Support/Windows/
System.inc
47
///
srandom
- set the initial seed value for future calls to random().
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/lib/gcc/i686-linux/4.4.3/include-fixed/X11/
Xw32defs.h
64
#define
srandom
srand
macro
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/lib/gcc/i686-linux/4.6.x-google/include-fixed/X11/
Xw32defs.h
64
#define
srandom
srand
macro
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/lib/gcc/x86_64-linux/4.6.x-google/include-fixed/X11/
Xw32defs.h
64
#define
srandom
srand
macro
/external/chromium_org/third_party/mesa/src/src/glx/
glxhash.c
445
srandom
(0xbeefbeef);
448
srandom
(0xbeefbeef);
451
srandom
(0xbeefbeef);
459
srandom
(0xbeefbeef);
462
srandom
(0xbeefbeef);
465
srandom
(0xbeefbeef);
/external/mesa3d/src/glx/
glxhash.c
445
srandom
(0xbeefbeef);
448
srandom
(0xbeefbeef);
451
srandom
(0xbeefbeef);
459
srandom
(0xbeefbeef);
462
srandom
(0xbeefbeef);
465
srandom
(0xbeefbeef);
/external/bzip2/
spewG.c
41
srandom
(1);
/bionic/libstdc++/include/
cstdlib
90
using ::
srandom
;
/device/asus/flo/conn_init/
wfc_util_common.c
120
srandom
(time(NULL));
/device/lge/mako/conn_init/
wfc_util_common.c
120
srandom
(time(NULL));
/external/bison/m4/
stdlib_h.m4
25
setenv setstate setstate_r
srandom
srandom_r
/external/ppp/pppd/
magic.c
120
srandom
((int)seedval);
/frameworks/native/libs/ui/tests/
Region_test.cpp
140
srandom
(12345);
/ndk/sources/cxx-stl/gabi++/include/
cstdlib
89
using ::
srandom
;
Completed in 517 milliseconds
1
2
3
4
5
6
7
8