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
132
) sorted by null
1
2
3
4
5
6
/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);
/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
/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/bzip2/
spewG.c
41
srandom
(1);
/external/webkit/Source/JavaScriptCore/wtf/
RandomNumberSeed.h
65
srandom
(static_cast<unsigned>(time.tv_usec * getpid()));
/external/webkit/Source/WebKit2/UIProcess/Launcher/qt/
ThreadLauncherQt.cpp
66
srandom
(time(0));
/bionic/libstdc++/include/
cstdlib
90
using ::
srandom
;
/external/ppp/pppd/
magic.c
120
srandom
((int)seedval);
/gdk/samples/PhotoEditor/jni/
whiteblack.cpp
66
srandom
(time(NULL));
/ndk/sources/cxx-stl/gabi++/include/
cstdlib
90
using ::
srandom
;
/ndk/sources/cxx-stl/system/include/
cstdlib
90
using ::
srandom
;
/prebuilts/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/
cstdlib
86
using ::
srandom
;
/prebuilts/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/
cstdlib
86
using ::
srandom
;
/prebuilts/ndk/android-ndk-r5/sources/cxx-stl/system/include/
cstdlib
90
using ::
srandom
;
/prebuilts/ndk/android-ndk-r6/sources/cxx-stl/system/include/
cstdlib
90
using ::
srandom
;
/prebuilts/ndk/android-ndk-r7/sources/cxx-stl/gabi++/include/
cstdlib
90
using ::
srandom
;
/prebuilts/ndk/android-ndk-r7/sources/cxx-stl/system/include/
cstdlib
90
using ::
srandom
;
/system/extras/tests/bionic/libstdc++/
test_cstdlib.cpp
89
using ::
srandom
;
/packages/providers/MediaProvider/src/com/android/providers/media/
MediaThumbRequest.java
72
private static final Random
sRandom
= new Random();
220
magic =
sRandom
.nextLong();
/frameworks/base/core/java/android/net/
DnsPinger.java
63
private static final Random
sRandom
= new Random();
160
newActivePing.packetId = (short)
sRandom
.nextInt();
Completed in 1934 milliseconds
1
2
3
4
5
6