/external/libcxx/test/containers/sequences/deque/deque.cons/ |
assign_iter_iter.pass.cpp | 90 int rng[] = {0, 1, 2, 3, 1023, 1024, 1025, 2047, 2048, 2049}; local 91 const int N = sizeof(rng)/sizeof(rng[0]); 95 testN<std::deque<int> >(rng[i], rng[j], rng[k]); 100 int rng[] = {0, 1, 2, 3, 1023, 1024, 1025, 2047, 2048, 2049}; local 101 const int N = sizeof(rng)/sizeof(rng[0]); 105 testN<std::deque<int, min_allocator<int>> >(rng[i], rng[j], rng[k]) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.capacity/ |
resize_size.pass.cpp | 69 int rng[] = {0, 1, 2, 3, 1023, 1024, 1025, 2047, 2048, 2049}; local 70 const int N = sizeof(rng)/sizeof(rng[0]); 74 testN<std::deque<int> >(rng[i], rng[j], rng[k]); 78 int rng[] = {0, 1, 2, 3, 1023, 1024, 1025, 2047, 2048, 2049}; local 79 const int N = sizeof(rng)/sizeof(rng[0]); 83 testN<std::deque<int, min_allocator<int>>>(rng[i], rng[j], rng[k]) [all...] |
resize_size_value.pass.cpp | 69 int rng[] = {0, 1, 2, 3, 1023, 1024, 1025, 2047, 2048, 2049}; local 70 const int N = sizeof(rng)/sizeof(rng[0]); 74 testN<std::deque<int> >(rng[i], rng[j], rng[k]); 78 int rng[] = {0, 1, 2, 3, 1023, 1024, 1025, 2047, 2048, 2049}; local 79 const int N = sizeof(rng)/sizeof(rng[0]); 83 testN<std::deque<int, min_allocator<int>>>(rng[i], rng[j], rng[k]) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.cons/ |
assign_iter_iter.pass.cpp | 90 int rng[] = {0, 1, 2, 3, 1023, 1024, 1025, 2047, 2048, 2049}; local 91 const int N = sizeof(rng)/sizeof(rng[0]); 95 testN<std::deque<int> >(rng[i], rng[j], rng[k]); 100 int rng[] = {0, 1, 2, 3, 1023, 1024, 1025, 2047, 2048, 2049}; local 101 const int N = sizeof(rng)/sizeof(rng[0]); 105 testN<std::deque<int, min_allocator<int>> >(rng[i], rng[j], rng[k]) [all...] |
/external/libcxx/test/containers/sequences/deque/deque.modifiers/ |
emplace.pass.cpp | 96 int rng[] = {0, 1, 2, 3, 1023, 1024, 1025, 2047, 2048, 2049}; local 97 const int N = sizeof(rng)/sizeof(rng[0]); 100 testN<std::deque<Emplaceable> >(rng[i], rng[j]); 104 int rng[] = {0, 1, 2, 3, 1023, 1024, 1025, 2047, 2048, 2049}; local 105 const int N = sizeof(rng)/sizeof(rng[0]); 108 testN<std::deque<Emplaceable, min_allocator<Emplaceable>> >(rng[i], rng[j]) [all...] |
erase_iter.pass.cpp | 75 int rng[] = {0, 1, 2, 3, 1023, 1024, 1025, 2047, 2048, 2049}; 76 const int N = sizeof(rng)/sizeof(rng[0]); 79 testN<std::deque<int> >(rng[i], rng[j]); 83 int rng[] = {0, 1, 2, 3, 1023, 1024, 1025, 2047, 2048, 2049}; 84 const int N = sizeof(rng)/sizeof(rng[0]); 87 testN<std::deque<int, min_allocator<int>> >(rng[i], rng[j]) [all...] |
erase_iter_iter.pass.cpp | 79 int rng[] = {0, 1, 2, 3, 1023, 1024, 1025, 2047, 2048, 2049}; local 80 const int N = sizeof(rng)/sizeof(rng[0]); 83 testN<std::deque<int> >(rng[i], rng[j]); 87 int rng[] = {0, 1, 2, 3, 1023, 1024, 1025, 2047, 2048, 2049}; local 88 const int N = sizeof(rng)/sizeof(rng[0]); 91 testN<std::deque<int, min_allocator<int>> >(rng[i], rng[j]) [all...] |
insert_rvalue.pass.cpp | 102 int rng[] = {0, 1, 2, 3, 1023, 1024, 1025, 2047, 2048, 2049}; local 103 const int N = sizeof(rng)/sizeof(rng[0]); 106 testN<std::deque<MoveOnly> >(rng[i], rng[j]); 110 int rng[] = {0, 1, 2, 3, 1023, 1024, 1025, 2047, 2048, 2049}; local 111 const int N = sizeof(rng)/sizeof(rng[0]); 114 testN<std::deque<MoveOnly, min_allocator<MoveOnly>> >(rng[i], rng[j]) [all...] |
insert_value.pass.cpp | 122 int rng[] = {0, 1, 2, 3, 1023, 1024, 1025, 2047, 2048, 2049}; local 123 const int N = sizeof(rng)/sizeof(rng[0]); 126 testN<std::deque<int> >(rng[i], rng[j]); 131 int rng[] = {0, 1, 2, 3, 1023, 1024, 1025, 2047, 2048, 2049}; local 132 const int N = sizeof(rng)/sizeof(rng[0]); 135 testN<std::deque<int, min_allocator<int>> >(rng[i], rng[j]) [all...] |
/external/libcxx/test/containers/sequences/deque/deque.special/ |
copy.pass.cpp | 73 int rng[] = {0, 1, 2, 3, 1023, 1024, 1025, 2047, 2048, 2049}; local 74 const int N = sizeof(rng)/sizeof(rng[0]); 77 testN<std::deque<int> >(rng[i], rng[j]); 81 int rng[] = {0, 1, 2, 3, 1023, 1024, 1025, 2047, 2048, 2049}; local 82 const int N = sizeof(rng)/sizeof(rng[0]); 85 testN<std::deque<int, min_allocator<int>> >(rng[i], rng[j]) [all...] |
copy_backward.pass.cpp | 72 int rng[] = {0, 1, 2, 3, 1023, 1024, 1025, 2047, 2048, 2049}; local 73 const int N = sizeof(rng)/sizeof(rng[0]); 76 testN<std::deque<int> >(rng[i], rng[j]); 80 int rng[] = {0, 1, 2, 3, 1023, 1024, 1025, 2047, 2048, 2049}; local 81 const int N = sizeof(rng)/sizeof(rng[0]); 84 testN<std::deque<int, min_allocator<int>> >(rng[i], rng[j]) [all...] |
move.pass.cpp | 72 int rng[] = {0, 1, 2, 3, 1023, 1024, 1025, 2047, 2048, 2049}; local 73 const int N = sizeof(rng)/sizeof(rng[0]); 76 testN<std::deque<int> >(rng[i], rng[j]); 80 int rng[] = {0, 1, 2, 3, 1023, 1024, 1025, 2047, 2048, 2049}; local 81 const int N = sizeof(rng)/sizeof(rng[0]); 84 testN<std::deque<int, min_allocator<int>> >(rng[i], rng[j]) [all...] |
move_backward.pass.cpp | 72 int rng[] = {0, 1, 2, 3, 1023, 1024, 1025, 2047, 2048, 2049}; local 73 const int N = sizeof(rng)/sizeof(rng[0]); 76 testN<std::deque<int> >(rng[i], rng[j]); 80 int rng[] = {0, 1, 2, 3, 1023, 1024, 1025, 2047, 2048, 2049}; local 81 const int N = sizeof(rng)/sizeof(rng[0]); 84 testN<std::deque<int, min_allocator<int> > >(rng[i], rng[j]) [all...] |
swap.pass.cpp | 57 int rng[] = {0, 1, 2, 3, 1023, 1024, 1025, 2047, 2048, 2049}; local 58 const int N = sizeof(rng)/sizeof(rng[0]); 62 testN<std::deque<int> >(rng[i], rng[j], rng[k]); 90 int rng[] = {0, 1, 2, 3, 1023, 1024, 1025, 2047, 2048, 2049}; local 91 const int N = sizeof(rng)/sizeof(rng[0]); 95 testN<std::deque<int, min_allocator<int>> >(rng[i], rng[j], rng[k]) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.modifiers/ |
emplace.pass.cpp | 96 int rng[] = {0, 1, 2, 3, 1023, 1024, 1025, 2047, 2048, 2049}; local 97 const int N = sizeof(rng)/sizeof(rng[0]); 100 testN<std::deque<Emplaceable> >(rng[i], rng[j]); 104 int rng[] = {0, 1, 2, 3, 1023, 1024, 1025, 2047, 2048, 2049}; local 105 const int N = sizeof(rng)/sizeof(rng[0]); 108 testN<std::deque<Emplaceable, min_allocator<Emplaceable>> >(rng[i], rng[j]) [all...] |
erase_iter.pass.cpp | 75 int rng[] = {0, 1, 2, 3, 1023, 1024, 1025, 2047, 2048, 2049}; 76 const int N = sizeof(rng)/sizeof(rng[0]); 79 testN<std::deque<int> >(rng[i], rng[j]); 83 int rng[] = {0, 1, 2, 3, 1023, 1024, 1025, 2047, 2048, 2049}; 84 const int N = sizeof(rng)/sizeof(rng[0]); 87 testN<std::deque<int, min_allocator<int>> >(rng[i], rng[j]) [all...] |
erase_iter_iter.pass.cpp | 79 int rng[] = {0, 1, 2, 3, 1023, 1024, 1025, 2047, 2048, 2049}; local 80 const int N = sizeof(rng)/sizeof(rng[0]); 83 testN<std::deque<int> >(rng[i], rng[j]); 87 int rng[] = {0, 1, 2, 3, 1023, 1024, 1025, 2047, 2048, 2049}; local 88 const int N = sizeof(rng)/sizeof(rng[0]); 91 testN<std::deque<int, min_allocator<int>> >(rng[i], rng[j]) [all...] |
insert_rvalue.pass.cpp | 102 int rng[] = {0, 1, 2, 3, 1023, 1024, 1025, 2047, 2048, 2049}; local 103 const int N = sizeof(rng)/sizeof(rng[0]); 106 testN<std::deque<MoveOnly> >(rng[i], rng[j]); 110 int rng[] = {0, 1, 2, 3, 1023, 1024, 1025, 2047, 2048, 2049}; local 111 const int N = sizeof(rng)/sizeof(rng[0]); 114 testN<std::deque<MoveOnly, min_allocator<MoveOnly>> >(rng[i], rng[j]) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.special/ |
copy.pass.cpp | 73 int rng[] = {0, 1, 2, 3, 1023, 1024, 1025, 2047, 2048, 2049}; local 74 const int N = sizeof(rng)/sizeof(rng[0]); 77 testN<std::deque<int> >(rng[i], rng[j]); 81 int rng[] = {0, 1, 2, 3, 1023, 1024, 1025, 2047, 2048, 2049}; local 82 const int N = sizeof(rng)/sizeof(rng[0]); 85 testN<std::deque<int, min_allocator<int>> >(rng[i], rng[j]) [all...] |
copy_backward.pass.cpp | 72 int rng[] = {0, 1, 2, 3, 1023, 1024, 1025, 2047, 2048, 2049}; local 73 const int N = sizeof(rng)/sizeof(rng[0]); 76 testN<std::deque<int> >(rng[i], rng[j]); 80 int rng[] = {0, 1, 2, 3, 1023, 1024, 1025, 2047, 2048, 2049}; local 81 const int N = sizeof(rng)/sizeof(rng[0]); 84 testN<std::deque<int, min_allocator<int>> >(rng[i], rng[j]) [all...] |
move.pass.cpp | 72 int rng[] = {0, 1, 2, 3, 1023, 1024, 1025, 2047, 2048, 2049}; local 73 const int N = sizeof(rng)/sizeof(rng[0]); 76 testN<std::deque<int> >(rng[i], rng[j]); 80 int rng[] = {0, 1, 2, 3, 1023, 1024, 1025, 2047, 2048, 2049}; local 81 const int N = sizeof(rng)/sizeof(rng[0]); 84 testN<std::deque<int, min_allocator<int>> >(rng[i], rng[j]) [all...] |
move_backward.pass.cpp | 72 int rng[] = {0, 1, 2, 3, 1023, 1024, 1025, 2047, 2048, 2049}; local 73 const int N = sizeof(rng)/sizeof(rng[0]); 76 testN<std::deque<int> >(rng[i], rng[j]); 80 int rng[] = {0, 1, 2, 3, 1023, 1024, 1025, 2047, 2048, 2049}; local 81 const int N = sizeof(rng)/sizeof(rng[0]); 84 testN<std::deque<int, min_allocator<int> > >(rng[i], rng[j]) [all...] |
swap.pass.cpp | 57 int rng[] = {0, 1, 2, 3, 1023, 1024, 1025, 2047, 2048, 2049}; local 58 const int N = sizeof(rng)/sizeof(rng[0]); 62 testN<std::deque<int> >(rng[i], rng[j], rng[k]); 90 int rng[] = {0, 1, 2, 3, 1023, 1024, 1025, 2047, 2048, 2049}; local 91 const int N = sizeof(rng)/sizeof(rng[0]); 95 testN<std::deque<int, min_allocator<int>> >(rng[i], rng[j], rng[k]) [all...] |
/external/chromium_org/v8/test/cctest/ |
test-random-number-generator.cc | 45 RandomNumberGenerator rng(kRandomSeeds[n]); 47 int n = rng.NextInt(max); 57 RandomNumberGenerator rng(kRandomSeeds[n]); 59 bool b = rng.NextBool(); 68 RandomNumberGenerator rng(kRandomSeeds[n]); 70 double d = rng.NextDouble();
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/ |
padlock.asm | 1 ;xstore-rng
|