Home
last modified time | relevance | path

Searched refs:random_device (Results 1 – 9 of 9) sorted by relevance

/NextBSD/contrib/libc++/src/
Drandom.cpp38 random_device::random_device(const string& __token) in random_device() function in random_device
44 random_device::~random_device() in ~random_device()
49 random_device::operator()() in operator ()()
56 random_device::random_device(const string& __token)
63 random_device::~random_device()
69 random_device::operator()()
93 random_device::random_device(const string& __token)
102 random_device::~random_device()
107 random_device::operator()()
122 random_device::random_device(const string& __token)
[all …]
/NextBSD/sys/dev/random/
HDrandomdev.c113 SYSINIT(random_device, SI_SUB_RANDOM, SI_ORDER_THIRD, random_alg_context_ra_init_alg, NULL);
114 SYSUNINIT(random_device, SI_SUB_RANDOM, SI_ORDER_THIRD, random_alg_context_ra_deinit_alg, NULL);
399 DECLARE_MODULE(random_device, randomdev_mod, SI_SUB_DRIVERS, SI_ORDER_FIRST);
400 MODULE_VERSION(random_device, 1);
401 MODULE_DEPEND(random_device, crypto, 1, 1, 1);
402 MODULE_DEPEND(random_device, random_harvestq, 1, 1, 1);
/NextBSD/contrib/libstdc++/include/tr1/
Drandom1410 class random_device
1421 random_device(const std::string& __token = "/dev/urandom")
1425 std::__throw_runtime_error(__N("random_device::"
1426 "random_device(const std::string&)"));
1429 ~random_device()
1435 random_device(const std::string& __token = "mt19937")
1449 std::__throw_runtime_error(__N("random_device::_M_strtoul"
1485 random_device(const random_device&);
1486 void operator=(const random_device&);
/NextBSD/contrib/libc++/include/
Drandom378 class random_device
389 explicit random_device(const string& token = "/dev/urandom");
398 random_device(const random_device& ) = delete;
399 void operator=(const random_device& ) = delete;
3474 // random_device
3476 class _LIBCPP_TYPE_VIS random_device
3495 explicit random_device(const string& __token = "/dev/urandom");
3496 ~random_device();
3506 random_device(const random_device&); // = delete;
3507 random_device& operator=(const random_device&); // = delete;
D__config129 // std::random_device is instead exposed through a NaCl syscall.
/NextBSD/contrib/libstdc++/
DChangeLog290 * include/tr1/random (class random_device): Rework to use simple
DChangeLog-20063903 * include/tr1/random (random_device::random_device(const
3906 * include/tr1/random (random_device::random_device(const
3908 (random_device::_M_strtoul): New.
3909 (random_device::operator()()): Update.
3919 * include/tr1/random (random_device): Implement, a fall-back for
3921 * testsuite/tr1/5_numerical_facilities/random/random_device/
3923 * testsuite/tr1/5_numerical_facilities/random/random_device/
3925 * testsuite/tr1/5_numerical_facilities/random/random_device/
Dacinclude.m41281 dnl random_device of "TR1" (Chapter 5.1, "Random number generation").
1285 AC_MSG_CHECKING([for "dev/random" and "dev/urandom" for TR1 random_device])
1301 the random_device of TR1 (Chapter 5.1).])
Dconfig.h.in759 /* Define if dev/random and dev/urandom are available for the random_device of