Home
last modified time | relevance | path

Searched refs:get_random (Results 1 – 7 of 7) sorted by relevance

/third_party/musl/porting/linux/user/src/malloc/
Dmalloc_random.c24 static bool get_random(uint64_t *x) in get_random() function
45 if (!get_random(&x)) { in next_key()
48 x = (((uint64_t)get_random) << 32) ^ (uint64_t)next_key ^ ts.tv_nsec; in next_key()
/third_party/boost/boost/uuid/detail/
Drandom_provider_getrandom.ipp48 ssize_t sz = get_random(static_cast< char* >(buf) + offset, siz - offset, 0u);
63 static ssize_t get_random(void *buf, std::size_t size, unsigned int flags)
/third_party/boost/libs/convert/test/
Dstrtol_converter.cpp273 get_random() in get_random() function
343 compare(get_random()); in test_dbl_to_str()
/third_party/boost/libs/math/test/
Dtest_round.cpp25 T get_random() in get_random() function
219 T arg = get_random<T>(); in test_round()
/third_party/boost/libs/multiprecision/test/
Dtest_round.cpp65 T get_random() in get_random() function
203 T arg = get_random<T>(); in test()
/third_party/mbedtls/docs/proposed/
Dpsa-driver-interface.md493 * `"get_random"` (entry point, mandatory): the core calls this function whenever it needs to [obtai…
509 …t, the context object passed to the first call to `"add_entropy"` or `"get_random"` will be all-bi…
529 …ce, the core can call `"add_entropy"` immediately after each call to `"get_random"`. The core must…
531 * Before the first call to the `"get_random"` entry point, to supply `"initial_entropy_size"` bytes…
532 * After a call to the `"get_random"` entry point returns less than the required amount of random da…
555 #### The `"get_random"` entry point
557 The `"get_random"` entry point has the following prototype for a driver with the prefix `"acme"`:
568 …f at least `"initial_entropy_size"` bytes of entropy before it calls `"get_random"`. Alternatively…
575 …od to supply at least `"reseed_entropy_size"` bytes of entropy before calling `"get_random"` again.
/third_party/musl/porting/linux/user/ldso/
Ddynlink.c1250 static bool get_random(void *buf, size_t buflen) in get_random() function
1275 if (!get_random(buf, buflen)) { in fill_random_data()
1279 x = (((uint64_t)get_random) << 32) ^ (uint64_t)fill_random_data ^ ts.tv_nsec; in fill_random_data()