OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:srand
(Results
1 - 25
of
532
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/bionic/libc/bionic/
rand.cpp
19
// The BSD rand/
srand
is very weak. glibc just uses random/srandom instead.
27
void
srand
(unsigned int seed) {
function
/external/chromium_org/third_party/angle/samples/angle/sample_util/
random_utils.cpp
16
srand
(time(NULL));
/external/compiler-rt/test/builtins/timing/
floatdidf.c
22
srand
(42);
floatdisf.c
22
srand
(42);
floatdixf.c
22
srand
(42);
floatundidf.c
19
srand
(42);
floatundisf.c
22
srand
(42);
floatundixf.c
22
srand
(42);
ashldi3.c
22
srand
(42);
ashrdi3.c
22
srand
(42);
divdi3.c
23
srand
(42);
lshrdi3.c
22
srand
(42);
moddi3.c
23
srand
(42);
modsi3.c
23
srand
(42);
muldi3.c
23
srand
(42);
negdi2.c
22
srand
(42);
udivdi3.c
23
srand
(42);
umoddi3.c
23
srand
(42);
/external/srec/tools/thirdparty/OpenFst/fst/lib/
random-weight.h
43
srand
(seed);
70
srand
(seed);
98
srand
(seed);
/development/samples/SupportLeanbackDemos/src/com/example/android/leanback/
BrowseAnimationFragment.java
36
private static Random
sRand
= new Random();
86
switch (
sRand
.nextInt(15)) {
170
int count =
sRand
.nextInt(4) + 1;
186
int count =
sRand
.nextInt(4) + 1;
200
int headerId =
sRand
.nextInt();
212
int headerId =
sRand
.nextInt();
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
ssrc_database.cc
89
srand
(timeGetTime());
94
srand
(tv.tv_usec);
/external/chromium_org/components/copresence/test/
audio_test_support.cc
14
srand
(random_seed);
/external/chromium_org/third_party/WebKit/Source/platform/testing/
TreeTestHelpers.cpp
36
srand
(seed);
/external/fio/t/
stest.c
33
srand
(MAGIC1);
/external/webrtc/test/testsupport/
unittest_utils.h
51
srand
(0);
Completed in 426 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>