Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/libcxx/src/
H A Drandom.cpp46 random_device::random_device(const string& __token) in random_device() function in random_device
52 random_device::~random_device() in ~random_device()
57 random_device::operator()() in operator ()()
69 random_device::random_device(const string& __token)
75 random_device::~random_device()
87 random_device::random_device(const string& __token)
94 random_device::~random_device()
124 random_device::random_device(const string& __token)
133 random_device::~random_device()
153 random_device::random_device(const string& __token)
[all …]
/freebsd-13.1/sys/dev/random/
H A Drandomdev.c100 SYSINIT(random_device, SI_SUB_RANDOM, SI_ORDER_SECOND, random_alg_context_init,
429 DECLARE_MODULE(random_device, randomdev_mod, SI_SUB_DRIVERS, SI_ORDER_FIRST);
430 MODULE_VERSION(random_device, 1);
431 MODULE_DEPEND(random_device, crypto, 1, 1, 1);
432 MODULE_DEPEND(random_device, random_harvestq, 1, 1, 1);
/freebsd-13.1/crypto/openssl/crypto/rand/
H A Drand_unix.c420 static struct random_device { struct
522 static int check_random_device(struct random_device * rd) in check_random_device()
540 struct random_device * rd = &random_devices[n]; in get_random_device()
569 struct random_device * rd = &random_devices[n]; in close_random_device()
/freebsd-13.1/contrib/llvm-project/llvm/tools/bugpoint/
H A DFindBugs.cpp38 std::mt19937 randomness(std::random_device{}()); in runManyPasses()
/freebsd-13.1/sys/dev/virtio/random/
H A Dvirtio_random.c110 MODULE_DEPEND(virtio_random, random_device, 1, 1, 1);
/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/
H A DLockFileManager.cpp307 std::random_device Device; in waitForUnlock()
/freebsd-13.1/contrib/llvm-project/libcxx/include/
H A Drandom386 class random_device
398 random_device() : random_device(implementation-defined) {} // C++20
408 random_device(const random_device& ) = delete;
409 void operator=(const random_device& ) = delete;
3590 // random_device
3594 class _LIBCPP_TYPE_VIS random_device
3614 random_device() : random_device("/dev/urandom") {}
3615 explicit random_device(const string& __token);
3619 ~random_device();
3629 random_device(const random_device&); // = delete;
[all …]
H A D__config332 // std::random_device is instead exposed through a NaCl syscall.
/freebsd-13.1/sys/crypto/ccp/
H A Dccp.c648 MODULE_DEPEND(ccp, random_device, 1, 1, 1);
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSTLExtras.h1405 static unsigned Result(std::random_device{}());
/freebsd-13.1/contrib/llvm-project/lld/ELF/
H A DWriter.cpp1313 std::mt19937 g(seed ? seed : std::random_device()()); in maybeShuffle()
/freebsd-13.1/contrib/bsnmp/tests/
H A Dcatch.hpp7721 static std::random_device entropy; in analyse_samples()