OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:randseed
(Results
1 - 2
of
2
) sorted by null
/bionic/libc/upstream-netbsd/common/lib/libc/stdlib/
random.c
512
static u_long
randseed
= 1;
local
521
x =
randseed
;
527
randseed
= t;
/external/curl/lib/vtls/
vtls.c
187
static unsigned int
randseed
;
local
195
size_t clen = sizeof(
randseed
);
197
memcpy((char *)&
randseed
, force_entropy, min);
201
randseed
++;
202
return
randseed
;
218
/* read random data into the
randseed
variable */
219
ssize_t nread = read(fd, &
randseed
, sizeof(
randseed
));
220
if(nread == sizeof(
randseed
))
230
randseed
+= (unsigned int)now.tv_usec + (unsigned int)now.tv_sec
[
all
...]
Completed in 85 milliseconds