/llvm-project/libcxx/test/std/containers/sequences/vector/vector.cons/ |
H A D | assign_move.pass.cpp | 26 std::vector<MoveOnly, test_allocator<MoveOnly> > lo(test_allocator<MoveOnly>(5)); in tests() local 43 std::vector<MoveOnly, test_allocator<MoveOnly> > lo(test_allocator<MoveOnly>(5)); in tests() local 62 std::vector<MoveOnly, other_allocator<MoveOnly> > lo(other_allocator<MoveOnly>(5)); in tests() local 81 std::vector<MoveOnly, min_allocator<MoveOnly> > lo((min_allocator<MoveOnly>())); in tests() local 100 std::vector<MoveOnly, safe_allocator<MoveOnly> > lo((safe_allocator<MoveOnly>())); in tests() local
|
H A D | move_alloc.pass.cpp | 27 std::vector<MoveOnly, test_allocator<MoveOnly> > lo(test_allocator<MoveOnly>(5)); in tests() local 45 std::vector<MoveOnly, test_allocator<MoveOnly> > lo(test_allocator<MoveOnly>(5)); in tests() local 63 std::vector<MoveOnly, other_allocator<MoveOnly> > lo(other_allocator<MoveOnly>(5)); in tests() local 81 std::vector<MoveOnly, min_allocator<MoveOnly> > lo((min_allocator<MoveOnly>())); in tests() local 99 std::vector<MoveOnly, safe_allocator<MoveOnly> > lo((safe_allocator<MoveOnly>())); in tests() local
|
H A D | move.pass.cpp | 29 std::vector<MoveOnly, test_allocator<MoveOnly> > lo(test_allocator<MoveOnly>(5, &alloc_stats)); in tests() local 47 std::vector<MoveOnly, other_allocator<MoveOnly> > lo(other_allocator<MoveOnly>(5)); in tests() local 76 std::vector<MoveOnly, min_allocator<MoveOnly> > lo((min_allocator<MoveOnly>())); tests() local 105 std::vector<MoveOnly, safe_allocator<MoveOnly> > lo((safe_allocator<MoveOnly>())); tests() local [all...] |
/llvm-project/libcxx/test/std/containers/sequences/list/list.cons/ |
H A D | move_alloc.pass.cpp | 26 std::list<MoveOnly, test_allocator<MoveOnly> > lo(test_allocator<MoveOnly>(5)); in main() local 39 std::list<MoveOnly, test_allocator<MoveOnly> > lo(test_allocator<MoveOnly>(5)); in main() local 52 std::list<MoveOnly, other_allocator<MoveOnly> > lo(other_allocator<MoveOnly>(5)); in main() local 65 std::list<MoveOnly, min_allocator<MoveOnly> > lo(min_allocator<MoveOnly>{}); in main() local
|
H A D | assign_move.pass.cpp | 26 std::list<MoveOnly, test_allocator<MoveOnly> > lo(test_allocator<MoveOnly>(5)); in main() local 42 std::list<MoveOnly, test_allocator<MoveOnly> > lo(test_allocator<MoveOnly>(5)); in main() local 56 std::list<MoveOnly, other_allocator<MoveOnly> > lo(other_allocator<MoveOnly>(5)); in main() local 72 std::list<MoveOnly, min_allocator<MoveOnly> > lo(min_allocator<MoveOnly>{}); in main() local
|
H A D | move.pass.cpp | 26 std::list<MoveOnly, test_allocator<MoveOnly> > lo(test_allocator<MoveOnly>(5)); in main() local 41 std::list<MoveOnly, other_allocator<MoveOnly> > lo(other_allocator<MoveOnly>(5)); in main() local 56 std::list<MoveOnly, min_allocator<MoveOnly> > lo(min_allocator<MoveOnly>{}); in main() local
|
H A D | assign_move.addressof.compile.pass.cpp | 23 std::list<operator_hijacker> lo; in test() local
|
H A D | assign_copy.addressof.compile.pass.cpp | 21 std::list<operator_hijacker> lo; in test() local
|
/llvm-project/third-party/benchmark/src/ |
H A D | benchmark_register.h | 16 typename std::vector<T>::iterator AddPowers(std::vector<T>* dst, T lo, T hi, in AddPowers() 40 void AddNegatedPowers(std::vector<T>* dst, T lo, T hi, int mult) { in AddNegatedPowers() 60 void AddRange(std::vector<T>* dst, T lo, T hi, int mult) { in AddRange()
|
/llvm-project/clang/test/CodeGen/X86/ |
H A D | avx-shuffle-builtins.c | 176 test_mm256_set_m128(__m128 hi,__m128 lo) test_mm256_set_m128() argument 182 test_mm256_set_m128d(__m128d hi,__m128d lo) test_mm256_set_m128d() argument 188 test_mm256_set_m128i(__m128i hi,__m128i lo) test_mm256_set_m128i() argument 194 test_mm256_setr_m128(__m128 hi,__m128 lo) test_mm256_setr_m128() argument 200 test_mm256_setr_m128d(__m128d hi,__m128d lo) test_mm256_setr_m128d() argument 206 test_mm256_setr_m128i(__m128i hi,__m128i lo) test_mm256_setr_m128i() argument [all...] |
/llvm-project/libc/AOR_v20.02/math/test/ |
H A D | mathbench.c | 221 double lo; member 235 #define D(func, lo, hi) {#func, 'd', 0, lo, hi, {.d = func}}, argument 236 #define F(func, lo, hi) {#func, 'f', 0, lo, hi, {.f = func}}, argument 237 #define VD(func, lo, hi) {#func, 'd', 'v', lo, hi, {.vd = func}}, argument 238 #define VF(func, lo, hi) {#func, 'f', 'v', lo, hi, {.vf = func}}, argument 239 #define VND(func, lo, hi) {#func, 'd', 'n', lo, hi, {.vnd = func}}, argument 240 #define VNF(func, lo, hi) {#func, 'f', 'n', lo, hi, {.vnf = func}}, argument 349 gen_linear (double lo, double hi) in gen_linear() 356 genf_linear (double lo, double hi) in genf_linear() 376 frand (double lo, double hi) in frand() [all …]
|
/llvm-project/compiler-rt/test/sanitizer_common/TestCases/NetBSD/ |
H A D | strtoi.cpp | 6 void test_strtoi(const char *nptr, int base, intmax_t lo, intmax_t hi) { in test_strtoi() 15 void test_strtou(const char *nptr, int base, intmax_t lo, intmax_t hi) { in test_strtou()
|
/llvm-project/libcxx/test/std/containers/sequences/forwardlist/forwardlist.cons/ |
H A D | assign_copy.addressof.compile.pass.cpp | 21 std::forward_list<operator_hijacker> lo; in test() local
|
/llvm-project/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/ |
H A D | merge_lvalue_pred.addressof.compile.pass.cpp | 21 std::forward_list<operator_hijacker> lo; in test() local
|
H A D | merge_lvalue.addressof.compile.pass.cpp | 21 std::forward_list<operator_hijacker> lo; in test() local
|
H A D | merge_rvalue.addressof.compile.pass.cpp | 23 std::forward_list<operator_hijacker> lo; in test() local
|
H A D | merge_rvalue_pred.addressof.compile.pass.cpp | 23 std::forward_list<operator_hijacker> lo; in test() local
|
/llvm-project/libcxx/test/std/containers/sequences/list/list.special/ |
H A D | swap.addressof.compile.pass.cpp | 22 std::list<operator_hijacker> lo; in test() local
|
/llvm-project/libc/src/__support/ |
H A D | number_pair.h | 19 T lo = T(0); global() member
|
/llvm-project/libc/src/unistd/linux/ |
H A D | pwrite.cpp | 28 const uint32_t lo = bits & UINT32_MAX; global() variable
|
H A D | pread.cpp | 27 const uint32_t lo = bits & UINT32_MAX; global() variable
|
/llvm-project/lld/ELF/Arch/ |
H A D | AVR.cpp | 218 const uint16_t lo = val & 0xf; in relocate() local 260 uint16_t lo = val >> 1; in relocate() local
|
/llvm-project/libc/src/__support/FPUtil/ |
H A D | triple_double.h | 15 double lo = 0.0; global() member
|
/llvm-project/compiler-rt/test/builtins/Unit/ppc/ |
H A D | DD.h | 10 double lo; member
|
H A D | floatunditf_test.h | 4 double lo; member
|