Home
last modified time | relevance | path

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

/external/libcxx/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 …]
/external/libcxx/test/std/numerics/rand/rand.device/
Dctor.pass.cpp35 std::random_device r(token); in check_random_device_valid()
40 std::random_device r(token); in check_random_device_invalid()
47 { std::random_device r; } in main()
57 std::random_device r; in main()
Deval.pass.cpp22 std::random_device r; in main()
23 std::random_device::result_type e = r(); in main()
28 std::random_device r("/dev/null"); in main()
Dentropy.pass.cpp21 std::random_device r; in main()
/external/clang/test/Modules/Inputs/PR20786/
Drandom.h8 struct random_device { struct
/external/vulkan-validation-layers/demos/smoke/
DSimulation.h108 std::random_device random_dev_;
/external/libcxx/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.