/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.real/ |
D | eval.pass.cpp | 33 typedef std::uniform_real_distribution<> D; in main() typedef 36 D d; in main() 38 std::vector<D::result_type> u; in main() 41 D::result_type v = d(g); in main() 45 D::result_type mean = std::accumulate(u.begin(), u.end(), in main() 46 D::result_type(0)) / u.size(); in main() 47 D::result_type var = 0; in main() 48 D::result_type skew = 0; in main() 49 D::result_type kurtosis = 0; in main() 52 D::result_type d = (u[i] - mean); in main() [all …]
|
D | eval_param.pass.cpp | 33 typedef std::uniform_real_distribution<> D; in main() typedef 35 typedef D::param_type P; in main() 37 D d(5.5, 25); in main() 40 std::vector<D::result_type> u; in main() 43 D::result_type v = d(g, p); in main() 47 D::result_type mean = std::accumulate(u.begin(), u.end(), in main() 48 D::result_type(0)) / u.size(); in main() 49 D::result_type var = 0; in main() 50 D::result_type skew = 0; in main() 51 D::result_type kurtosis = 0; in main() [all …]
|
/ndk/sources/android/support/src/musl-multibyte/ |
D | internal.c | 10 #define D(x) C((x+16)) macro 27 D(0x0),D(0x1),D(0x2),D(0x3),D(0x4),D(0x5),D(0x6),D(0x7), 28 D(0x8),D(0x9),D(0xa),D(0xb),D(0xc),D(0xd),D(0xe),D(0xf),
|
/ndk/sources/host-tools/make-3.81/ |
D | build_w32.bat | 31 …/W4 /GX /Zi /YX /Od /I . /I glob /I w32/include /D TIVOLI /D _DEBUG /D WINDOWS32 /D WIN32 /D _CONS… 33 … /MT /W4 /GX /Zi /YX /Od /I . /I glob /I w32/include /D _DEBUG /D WINDOWS32 /D WIN32 /D _CONSOLE /… 35 … /MT /W4 /GX /Zi /YX /Od /I . /I glob /I w32/include /D _DEBUG /D WINDOWS32 /D WIN32 /D _CONSOLE /… 37 … /MT /W4 /GX /Zi /YX /Od /I . /I glob /I w32/include /D _DEBUG /D WINDOWS32 /D WIN32 /D _CONSOLE /… 39 … /MT /W4 /GX /Zi /YX /Od /I . /I glob /I w32/include /D _DEBUG /D WINDOWS32 /D WIN32 /D _CONSOLE /… 41 … /MT /W4 /GX /Zi /YX /Od /I . /I glob /I w32/include /D _DEBUG /D WINDOWS32 /D WIN32 /D _CONSOLE /… 43 … /MT /W4 /GX /Zi /YX /Od /I . /I glob /I w32/include /D _DEBUG /D WINDOWS32 /D WIN32 /D _CONSOLE /… 45 … /MT /W4 /GX /Zi /YX /Od /I . /I glob /I w32/include /D _DEBUG /D WINDOWS32 /D WIN32 /D _CONSOLE /… 47 … /MT /W4 /GX /Zi /YX /Od /I . /I glob /I w32/include /D _DEBUG /D WINDOWS32 /D WIN32 /D _CONSOLE /… 49 … /MT /W4 /GX /Zi /YX /Od /I . /I glob /I w32/include /D _DEBUG /D WINDOWS32 /D WIN32 /D _CONSOLE /… [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.negbin/ |
D | eq.pass.cpp | 26 typedef std::negative_binomial_distribution<> D; in main() typedef 27 D d1(3, .25); in main() 28 D d2(3, .25); in main() 32 typedef std::negative_binomial_distribution<> D; in main() typedef 33 D d1(3, .28); in main() 34 D d2(3, .25); in main() 38 typedef std::negative_binomial_distribution<> D; in main() typedef 39 D d1(3, .25); in main() 40 D d2(4, .25); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bin/ |
D | eq.pass.cpp | 26 typedef std::binomial_distribution<> D; in main() typedef 27 D d1(3, .25); in main() 28 D d2(3, .25); in main() 32 typedef std::binomial_distribution<> D; in main() typedef 33 D d1(3, .28); in main() 34 D d2(3, .25); in main() 38 typedef std::binomial_distribution<> D; in main() typedef 39 D d1(3, .25); in main() 40 D d2(4, .25); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.discrete/ |
D | eval.pass.cpp | 24 typedef std::discrete_distribution<> D; in main() typedef 27 D d; in main() 29 std::vector<D::result_type> u(d.max()+1); in main() 32 D::result_type v = d(g); in main() 41 typedef std::discrete_distribution<> D; in main() typedef 45 D d(p0, p0+1); in main() 47 std::vector<D::result_type> u(d.max()+1); in main() 50 D::result_type v = d(g); in main() 59 typedef std::discrete_distribution<> D; in main() typedef 63 D d(p0, p0+2); in main() [all …]
|
D | ctor_init.pass.cpp | 24 typedef std::discrete_distribution<> D; in main() typedef 25 D d = {}; in main() 31 typedef std::discrete_distribution<> D; in main() typedef 32 D d = {10}; in main() 38 typedef std::discrete_distribution<> D; in main() typedef 39 D d = {10, 30}; in main() 46 typedef std::discrete_distribution<> D; in main() typedef 47 D d = {30, 10}; in main() 54 typedef std::discrete_distribution<> D; in main() typedef 55 D d = {30, 0, 10}; in main() [all …]
|
D | eq.pass.cpp | 26 typedef std::discrete_distribution<> D; in main() typedef 27 D d1; in main() 28 D d2; in main() 32 typedef std::discrete_distribution<> D; in main() typedef 34 D d1(p0, p0+1); in main() 35 D d2; in main() 39 typedef std::discrete_distribution<> D; in main() typedef 41 D d1(p0, p0+2); in main() 42 D d2; in main()
|
D | ctor_iterator.pass.cpp | 24 typedef std::discrete_distribution<> D; in main() typedef 26 D d(p0, p0); in main() 32 typedef std::discrete_distribution<> D; in main() typedef 34 D d(p0, p0+1); in main() 40 typedef std::discrete_distribution<> D; in main() typedef 42 D d(p0, p0+2); in main() 49 typedef std::discrete_distribution<> D; in main() typedef 51 D d(p0, p0+2); in main() 58 typedef std::discrete_distribution<> D; in main() typedef 60 D d(p0, p0+3); in main() [all …]
|
D | param_ctor_init.pass.cpp | 24 typedef std::discrete_distribution<> D; in main() typedef 25 typedef D::param_type P; in main() 32 typedef std::discrete_distribution<> D; in main() typedef 33 typedef D::param_type P; in main() 40 typedef std::discrete_distribution<> D; in main() typedef 41 typedef D::param_type P; in main() 49 typedef std::discrete_distribution<> D; in main() typedef 50 typedef D::param_type P; in main() 58 typedef std::discrete_distribution<> D; in main() typedef 59 typedef D::param_type P; in main() [all …]
|
D | param_ctor_iterator.pass.cpp | 24 typedef std::discrete_distribution<> D; in main() typedef 25 typedef D::param_type P; in main() 33 typedef std::discrete_distribution<> D; in main() typedef 34 typedef D::param_type P; in main() 42 typedef std::discrete_distribution<> D; in main() typedef 43 typedef D::param_type P; in main() 52 typedef std::discrete_distribution<> D; in main() typedef 53 typedef D::param_type P; in main() 62 typedef std::discrete_distribution<> D; in main() typedef 63 typedef D::param_type P; in main() [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.pconst/ |
D | eq.pass.cpp | 26 typedef std::piecewise_constant_distribution<> D; in main() typedef 27 D d1; in main() 28 D d2; in main() 32 typedef std::piecewise_constant_distribution<> D; in main() typedef 35 D d1(b, b+4, p); in main() 36 D d2(b, b+4, p); in main() 40 typedef std::piecewise_constant_distribution<> D; in main() typedef 43 D d1(b, b+4, p); in main() 44 D d2; in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.plinear/ |
D | eq.pass.cpp | 26 typedef std::piecewise_linear_distribution<> D; in main() typedef 27 D d1; in main() 28 D d2; in main() 32 typedef std::piecewise_linear_distribution<> D; in main() typedef 35 D d1(b, b+4, p); in main() 36 D d2(b, b+4, p); in main() 40 typedef std::piecewise_linear_distribution<> D; in main() typedef 43 D d1(b, b+4, p); in main() 44 D d2; in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/ |
D | CREDITS.TXT | 8 (W), PGP key ID and fingerprint (P), description (D), and snail-mail address 13 D: Minor patches and Linux fixes. 17 D: Visibility fixes, minor FreeBSD portability patches. 21 D: Minor fix. 25 D: Initial Windows patches. 29 D: FreeBSD and Solaris ports, libcxxrt support, some atomics work. 34 D: C++14 support, patches and bug fixes. 38 D: Regex bug fixes. 42 D: Minor patches and bug fixes. 45 D: Copyright owner and contributor of the CityHash algorithm [all …]
|
/ndk/tests/device/test-stlport_static-exception/jni/ |
D | delete2.cpp | 52 struct D : B1, B2 struct 54 D (){} in D() function 55 ~D () throw() {} in ~D() argument 58 void f1 (D*); argument 63 f1 (::new D); in main() 64 f2 (::new D); in main() 65 f3 (::new D); in main() 67 void f1 ( D* p) { ::delete p; } in f1()
|
/ndk/tests/device/test-stlport_shared-exception/jni/ |
D | delete2.cpp | 52 struct D : B1, B2 struct 54 D (){} in D() argument 55 ~D () throw() {} in ~D() argument 58 void f1 (D*); argument 63 f1 (::new D); in main() 64 f2 (::new D); in main() 65 f3 (::new D); in main() 67 void f1 ( D* p) { ::delete p; } in f1()
|
/ndk/sources/host-tools/make-3.81/w32/subproc/ |
D | build.bat | 3 cl.exe /nologo /MT /W4 /GX /Z7 /YX /Od /I .. /I . /I ../include /D WIN32 /D WINDOWS32 /D _DEBUG /D … 4 … /MT /W4 /GX /Z7 /YX /Od /I .. /I . /I ../include /I ../.. /D WIN32 /D WINDOWS32 /D _DEBUG /D _WIN… 5 cl.exe /nologo /MT /W4 /GX /Z7 /YX /Od /I .. /I . /I ../include /D WIN32 /D WINDOWS32 /D _DEBUG /D … 8 cl.exe /nologo /MT /W4 /GX /YX /O2 /I ../include /D WIN32 /D WINDOWS32 /D NDEBUG /D _WINDOWS /FR.\W… 9 cl.exe /nologo /MT /W4 /GX /YX /O2 /I ../include /I ../.. /D WIN32 /D WINDOWS32 /D NDEBUG /D _WINDO… 10 cl.exe /nologo /MT /W4 /GX /YX /O2 /I ../include /D WIN32 /D WINDOWS32 /D NDEBUG /D _WINDOWS /FR.\W…
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.f/ |
D | eval_param.pass.cpp | 51 typedef std::fisher_f_distribution<> D; in main() typedef 52 typedef D::param_type P; in main() 55 D d(2, 4); in main() 58 std::vector<D::result_type> u; in main() 61 D::result_type v = d(g, p); in main() 70 typedef std::fisher_f_distribution<> D; in main() typedef 71 typedef D::param_type P; in main() 74 D d(4, 2); in main() 77 std::vector<D::result_type> u; in main() 80 D::result_type v = d(g, p); in main() [all …]
|
D | eval.pass.cpp | 51 typedef std::fisher_f_distribution<> D; in main() typedef 52 typedef D::param_type P; in main() 55 D d(2, 4); in main() 57 std::vector<D::result_type> u; in main() 60 D::result_type v = d(g); in main() 69 typedef std::fisher_f_distribution<> D; in main() typedef 70 typedef D::param_type P; in main() 73 D d(4, 2); in main() 75 std::vector<D::result_type> u; in main() 78 D::result_type v = d(g); in main() [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.cauchy/ |
D | eval.pass.cpp | 31 typedef std::cauchy_distribution<> D; in main() typedef 32 typedef D::param_type P; in main() 37 D d(a, b); in main() 39 std::vector<D::result_type> u; in main() 47 typedef std::cauchy_distribution<> D; in main() typedef 48 typedef D::param_type P; in main() 53 D d(a, b); in main() 55 std::vector<D::result_type> u; in main() 63 typedef std::cauchy_distribution<> D; in main() typedef 64 typedef D::param_type P; in main() [all …]
|
D | eq.pass.cpp | 26 typedef std::cauchy_distribution<> D; in main() typedef 27 D d1(2.5, 4); in main() 28 D d2(2.5, 4); in main() 32 typedef std::cauchy_distribution<> D; in main() typedef 33 D d1(2.5, 4); in main() 34 D d2(2.5, 4.5); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.int/ |
D | eq.pass.cpp | 26 typedef std::uniform_int_distribution<> D; in main() typedef 27 D d1(3, 8); in main() 28 D d2(3, 8); in main() 32 typedef std::uniform_int_distribution<> D; in main() typedef 33 D d1(3, 8); in main() 34 D d2(3, 9); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.chisq/ |
D | eq.pass.cpp | 26 typedef std::chi_squared_distribution<> D; in main() typedef 27 D d1(2.5); in main() 28 D d2(2.5); in main() 32 typedef std::chi_squared_distribution<> D; in main() typedef 33 D d1(4); in main() 34 D d2(4.5); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.geo/ |
D | eq.pass.cpp | 26 typedef std::geometric_distribution<> D; in main() typedef 27 D d1(.25); in main() 28 D d2(.25); in main() 32 typedef std::geometric_distribution<> D; in main() typedef 33 D d1(.28); in main() 34 D d2(.25); in main()
|