Searched refs:random_device (Results 1 - 21 of 21) sorted by relevance

/netbsd-current/external/apache2/llvm/dist/libcxx/src/
H A Drandom.cpp46 random_device::random_device(const string& __token) function in class:random_device
52 random_device::~random_device()
57 random_device::operator()()
63 __throw_system_error(errno, "random_device getentropy failed");
69 random_device::random_device(const string& __token)
75 random_device::~random_device()
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++11/
H A Dcow-string-inst.cc42 random_device::_M_init(const std::string& token)
46 random_device::_M_init_pretr1(const std::string& token)
H A Drandom.cc94 std::__throw_runtime_error(__N("random_device: rdrand failed"));
117 std::__throw_runtime_error(__N("random_device: rdseed failed"));
141 std::__throw_runtime_error(__N("random_device: rand_s failed"));
148 random_device::_M_init(const std::string& token)
202 __N("random_device::random_device(const std::string&):"
294 __N("random_device::random_device(const std::string&):"
302 random_device::_M_init_pretr1(const std::string& token)
312 std::__throw_runtime_error(__N("random_device
[all...]
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/src/c++11/
H A Dcow-string-inst.cc42 random_device::_M_init(const std::string& token)
46 random_device::_M_init_pretr1(const std::string& token)
H A Drandom.cc110 std::__throw_runtime_error(__N("random_device: rdrand failed"));
133 std::__throw_runtime_error(__N("random_device: rdseed failed"));
162 std::__throw_runtime_error(__N("random_device: darn failed"));
175 std::__throw_runtime_error(__N("random_device: rand_s failed"));
186 std::__throw_runtime_error(__N("random_device: getentropy failed"));
257 which_source(random_device::result_type (*func [[maybe_unused]])(void*),
313 random_device::_M_init(const std::string& token)
375 __N("random_device::random_device(const std::string&):"
499 __N("random_device
[all...]
/netbsd-current/lib/librumpuser/
H A Drumpuser_random.c59 static const char *random_device = "/dev/urandom"; variable
66 random_fd = open(random_device, O_RDONLY);
/netbsd-current/external/apache2/llvm/dist/llvm/tools/bugpoint/
H A DFindBugs.cpp38 std::mt19937 randomness(std::random_device{}());
/netbsd-current/crypto/external/bsd/openssl.old/dist/crypto/rand/
H A Drand_unix.c417 static struct random_device { struct
519 static int check_random_device(struct random_device * rd)
537 struct random_device * rd = &random_devices[n];
566 struct random_device * rd = &random_devices[n];
/netbsd-current/crypto/external/bsd/openssl/dist/providers/implementations/rands/seeding/
H A Drand_unix.c410 static struct random_device { struct
512 static int check_random_device(struct random_device * rd)
530 struct random_device * rd = &random_devices[n];
559 struct random_device * rd = &random_devices[n];
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/include/tr1/
H A Drandom.h1461 class random_device
1472 random_device(const std::string& __token = "/dev/urandom")
1476 std::__throw_runtime_error(__N("random_device::"
1477 "random_device(const std::string&)"));
1480 ~random_device()
1486 random_device(const std::string& __token = "mt19937")
1500 std::__throw_runtime_error(__N("random_device::_M_strtoul"
1536 random_device(const random_device&);
1537 void operator=(const random_device
[all...]
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/include/tr1/
H A Drandom.h1461 class random_device
1472 random_device(const std::string& __token = "/dev/urandom")
1476 std::__throw_runtime_error(__N("random_device::"
1477 "random_device(const std::string&)"));
1480 ~random_device()
1486 random_device(const std::string& __token = "mt19937")
1500 std::__throw_runtime_error(__N("random_device::_M_strtoul"
1536 random_device(const random_device&);
1537 void operator=(const random_device
[all...]
/netbsd-current/external/apache2/llvm/dist/libcxx/benchmarks/
H A DGenerateInput.h28 static std::default_random_engine RandEngine(std::random_device{}());
H A Dordered_set.bench.cpp38 std::random_device R;
H A Dalgorithms.bench.cpp110 std::random_device R;
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Support/
H A DLockFileManager.cpp307 std::random_device Device;
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
H A DSnippetGenerator.cpp176 static std::random_device RandomDevice;
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
H A Drandom.h1608 class random_device
1616 random_device() { _M_init("default"); }
1619 random_device(const std::string& __token) { _M_init(__token); }
1622 ~random_device()
1649 random_device(const random_device&) = delete;
1650 void operator=(const random_device&) = delete;
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
H A Drandom.h1613 class random_device
1621 random_device() { _M_init("default"); }
1624 random_device(const std::string& __token) { _M_init(__token); }
1627 ~random_device()
1654 random_device(const random_device&) = delete;
1655 void operator=(const random_device&) = delete;
/netbsd-current/external/apache2/llvm/dist/libcxx/utils/ci/
H A Drun-buildbot329 generic-no-random_device)
333 generate-cmake -C "${MONOREPO_ROOT}/libcxx/cmake/caches/Generic-no-random_device.cmake"
/netbsd-current/external/apache2/llvm/dist/libcxx/utils/google-benchmark/test/
H A Doutput_test_helper.cc449 static std::mt19937 rd{std::random_device{}()};
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DSTLExtras.h1353 static unsigned Result(std::random_device{}());

Completed in 462 milliseconds