Searched refs:get_random (Results 1 – 7 of 7) sorted by relevance
/third_party/musl/porting/linux/user/src/malloc/ |
D | malloc_random.c | 24 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/ |
D | random_provider_getrandom.ipp | 48 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/ |
D | strtol_converter.cpp | 273 get_random() in get_random() function 343 compare(get_random()); in test_dbl_to_str()
|
/third_party/boost/libs/math/test/ |
D | test_round.cpp | 25 T get_random() in get_random() function 219 T arg = get_random<T>(); in test_round()
|
/third_party/boost/libs/multiprecision/test/ |
D | test_round.cpp | 65 T get_random() in get_random() function 203 T arg = get_random<T>(); in test()
|
/third_party/mbedtls/docs/proposed/ |
D | psa-driver-interface.md | 493 * `"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/ |
D | dynlink.c | 1250 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()
|