OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mRandState
(Results
1 - 2
of
2
) sorted by null
/system/core/include/utils/
BlobCache.h
232
//
mRandState
is the pseudo-random number generator state. It is passed to
234
unsigned short
mRandState
[3];
/system/core/libutils/
BlobCache.cpp
47
mRandState
[0] = (now >> 0) & 0xFFFF;
48
mRandState
[1] = (now >> 16) & 0xFFFF;
49
mRandState
[2] = (now >> 32) & 0xFFFF;
277
return nrand48(
mRandState
);
Completed in 110 milliseconds