HomeSort by: relevance | last modified time | path
    Searched refs:random_device (Results 1 - 24 of 24) sorted by relevancy

  /src/external/apache2/llvm/dist/libcxx/src/
random.cpp 46 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...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++11/
cow-string-inst.cc 41 random_device::_M_init(const std::string& token)
45 random_device::_M_init_pretr1(const std::string& token)
random.cc 114 std::__throw_runtime_error(__N("random_device: rdrand failed"));
137 std::__throw_runtime_error(__N("random_device: rdseed failed"));
166 std::__throw_runtime_error(__N("random_device: darn failed"));
179 std::__throw_runtime_error(__N("random_device: rand_s failed"));
190 std::__throw_runtime_error(__N("random_device: getentropy failed"));
261 which_source(random_device::result_type (*func [[maybe_unused]])(void*),
317 random_device::_M_init(const std::string& token)
378 std::__throw_syserr(EINVAL, __N("random_device::random_device"
516 auto msg = __N("random_device::random_device(const std::string&):
    [all...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++11/
cow-string-inst.cc 42 random_device::_M_init(const std::string& token)
46 random_device::_M_init_pretr1(const std::string& token)
random.cc 110 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::random_device(const std::string&):
    [all...]
  /src/lib/librumpuser/
rumpuser_random.c 59 static const char *random_device = "/dev/urandom"; variable
66 random_fd = open(random_device, O_RDONLY);
  /src/external/apache2/llvm/dist/llvm/tools/bugpoint/
FindBugs.cpp 38 std::mt19937 randomness(std::random_device{}());
  /src/external/bsd/zstd/dist/contrib/pzstd/test/
RoundTripTest.cpp 65 std::mt19937 gen(std::random_device{}());
PzstdTest.cpp 26 unsigned seed = std::random_device{}();
64 unsigned seed = std::random_device{}();
99 unsigned seed = std::random_device{}();
  /src/crypto/external/apache2/openssl/dist/providers/implementations/rands/seeding/
rand_unix.c 410 static struct random_device { struct
514 static int check_random_device(struct random_device *rd)
532 struct random_device *rd = &random_devices[n];
561 struct random_device *rd = &random_devices[n];
  /src/crypto/external/bsd/openssl/dist/providers/implementations/rands/seeding/
rand_unix.c 410 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];
  /src/crypto/external/bsd/openssl.old/dist/crypto/rand/
rand_unix.c 417 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];
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/tr1/
random.h 1424 class random_device
1435 random_device(const std::string& __token = "/dev/urandom")
1439 std::__throw_runtime_error(__N("random_device::"
1440 "random_device(const std::string&)"));
1443 ~random_device()
1449 random_device(const std::string& __token = "mt19937")
1463 std::__throw_runtime_error(__N("random_device::_M_strtoul"
1499 random_device(const random_device&);
1500 void operator=(const random_device&)
    [all...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/tr1/
random.h 1461 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...]
  /src/external/apache2/llvm/dist/libcxx/benchmarks/
GenerateInput.h 28 static std::default_random_engine RandEngine(std::random_device{}());
ordered_set.bench.cpp 38 std::random_device R;
algorithms.bench.cpp 110 std::random_device R;
  /src/external/apache2/llvm/dist/llvm/lib/Support/
LockFileManager.cpp 307 std::random_device Device;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
SnippetGenerator.cpp 176 static std::random_device RandomDevice;
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
random.h 1752 class random_device
1760 random_device() { _M_init("default"); }
1763 random_device(const std::string& __token) { _M_init(__token); }
1765 ~random_device()
1785 random_device(const random_device&) = delete;
1786 void operator=(const random_device&) = delete;
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
random.h 1613 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;
  /src/external/apache2/llvm/dist/libcxx/utils/ci/
run-buildbot 329 generic-no-random_device)
333 generate-cmake -C "${MONOREPO_ROOT}/libcxx/cmake/caches/Generic-no-random_device.cmake"
  /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/test/
output_test_helper.cc 449 static std::mt19937 rd{std::random_device{}()};
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
STLExtras.h 1353 static unsigned Result(std::random_device{}());

Completed in 33 milliseconds