HomeSort by relevance Sort by last modified time
    Searched refs:random_device (Results 1 - 25 of 44) sorted by null

1 2

  /external/libcxx/test/std/numerics/rand/rand.device/
eval.pass.cpp 12 // class random_device;
24 std::random_device r;
25 std::random_device::result_type e = r();
32 std::random_device r("/dev/null");
entropy.pass.cpp 12 // class random_device;
21 std::random_device r;
ctor.pass.cpp 12 // class random_device;
14 // explicit random_device(const string& token = implementation-defined);
42 std::random_device r(token);
48 std::random_device r(token);
60 std::random_device r;
81 // Test that random_device(const string&) properly handles getting
92 std::random_device r;
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.device/
eval.pass.cpp 12 // class random_device;
22 std::random_device r;
23 std::random_device::result_type e = r();
28 std::random_device r("/dev/null");
ctor.pass.cpp 12 // class random_device;
14 // explicit random_device(const string& token = "/dev/urandom");
24 std::random_device r("wrong file");
31 std::random_device r;
41 std::random_device r;
44 std::random_device r("/dev/urandom");;
47 std::random_device r("/dev/random");;
entropy.pass.cpp 12 // class random_device;
21 std::random_device r;
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/numerics/rand/rand.device/
eval.pass.cpp 13 // class random_device;
23 std::random_device r;
24 std::random_device::result_type e = r();
29 std::random_device r("/dev/null");
entropy.pass.cpp 12 // class random_device;
21 std::random_device r;
ctor.pass.cpp 13 // class random_device;
15 // explicit random_device(const string& token = implementation-defined);
41 std::random_device r(token);
46 std::random_device r(token);
55 std::random_device r;
76 // Test that random_device(const string&) properly handles getting
87 std::random_device r;
  /external/libcxx/src/
random.cpp 40 random_device::random_device(const string& __token) function in class:random_device
46 random_device::~random_device()
51 random_device::operator()()
58 random_device::random_device(const string& __token)
62 __throw_system_error(errno, ("random_device failed to open " + __token).c_str());
65 random_device::~random_device()
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/src/
random.cpp 38 random_device::random_device(const string& __token) function in class:random_device
44 random_device::~random_device()
49 random_device::operator()()
56 random_device::random_device(const string& __token)
60 __throw_system_error(errno, ("random_device failed to open " + __token).c_str());
63 random_device::~random_device()
    [all...]
  /external/clang/test/Modules/Inputs/PR20786/
random.h 8 struct random_device { struct in namespace:std
  /system/chre/apps/wifi_offload/test/
random_generator.cc 31 std::random_device random_device; local
33 initial_seed_ = random_device();
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/src/
random.cpp 31 random_device::random_device(const string&) function in class:random_device
35 random_device::~random_device()
40 random_device::operator()()
45 __throw_system_error(err, "random_device rand_s failed.");
49 random_device::random_device(const string& __token)
53 __throw_system_error(errno, ("random_device failed to open " + __token).c_str());
56 random_device::~random_device(
    [all...]
  /system/chre/apps/wifi_offload/test/include/
random_generator.h 55 std::random_device::result_type initial_seed_;
  /external/vulkan-validation-layers/demos/smoke/
Simulation.h 102 std::random_device random_dev_;
  /frameworks/native/libs/vr/libdvrcommon/include/private/dvr/
numeric.h 109 std::random_device rd;
119 std::random_device rd;
  /external/libcxx/benchmarks/
GenerateInput.hpp 28 static std::default_random_engine RandEngine(std::random_device{}());
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/tr1/
random.h     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/tr1/
random.h     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/tr1/
random.h     [all...]
  /prebuilts/ndk/r10/sources/cxx-stl/gnu-libstdc++/4.9/include/tr1/
random.h     [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/gnu-libstdc++/4.9/include/tr1/
random.h     [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/tr1/
random.h     [all...]
  /frameworks/native/libs/vr/libpdx_uds/
client_channel_tests.cpp 133 std::random_device rd;

Completed in 887 milliseconds

1 2