OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:random_value
(Results
1 - 4
of
4
) sorted by relevancy
/src/crypto/external/apache2/openssl/dist/providers/implementations/rands/seeding/
rand_cpu_x86.c
68
uint64_t
random_value
= 0;
local
70
if (_rdrand64(&
random_value
) != 0) {
71
unsigned char *random_buffer = (unsigned char *)&
random_value
;
73
if (bytes_remaining >= sizeof(
random_value
)) {
74
memcpy(buf, random_buffer, sizeof(
random_value
));
75
bytes_remaining -= sizeof(
random_value
);
76
buf += sizeof(
random_value
);
79
random_buffer + (sizeof(
random_value
) - bytes_remaining),
/src/crypto/external/bsd/openssl/dist/providers/implementations/rands/seeding/
rand_cpu_x86.c
68
uint64_t
random_value
= 0;
local
70
if (_rdrand64(&
random_value
) != 0) {
71
unsigned char *random_buffer = (unsigned char *)&
random_value
;
73
if (bytes_remaining >= sizeof(
random_value
)) {
74
memcpy(buf, random_buffer, sizeof(
random_value
));
75
bytes_remaining -= sizeof(
random_value
);
76
buf += sizeof(
random_value
);
79
random_buffer + (sizeof(
random_value
) - bytes_remaining),
/src/external/gpl3/gdb/dist/gnulib/import/
tempname.c
75
typedef uint_fast64_t
random_value
;
typedef
80
static
random_value
81
random_bits (
random_value
var, bool use_getrandom)
83
random_value
r;
268
random_value
v = ((uintptr_t) &v) / alignof (max_align_t);
282
random_value
const unfair_min
/src/external/gpl3/gdb.old/dist/gnulib/import/
tempname.c
75
typedef uint_fast64_t
random_value
;
typedef
80
static
random_value
81
random_bits (
random_value
var, bool use_getrandom)
83
random_value
r;
268
random_value
v = ((uintptr_t) &v) / alignof (max_align_t);
282
random_value
const unfair_min
Completed in 17 milliseconds
Indexes created Sun May 03 00:22:47 UTC 2026