| /llvm-project-15.0.7/libcxxabi/test/ |
| H A D | test_vector1.pass.cpp | 79 void *one, *two, *three; in test_empty() local 88 __cxxabiv1::__cxa_vec_delete3( three, 40, 0, NULL, my_dealloc3 ); in test_empty() 97 __cxxabiv1::__cxa_vec_delete3( three, 40, 0, my_destruct, my_dealloc3 ); in test_empty() 106 __cxxabiv1::__cxa_vec_delete3( three, 40, 8, NULL, my_dealloc3 ); in test_empty() 115 __cxxabiv1::__cxa_vec_delete3( three, 40, 8, my_destruct, my_dealloc3 ); in test_empty() 123 void *one, *two, *three; in test_counted() local 165 void *one, *two, *three; in test_exception_in_constructor() local 172 one = two = three = NULL; in test_exception_in_constructor() 197 one = two = three = NULL; in test_exception_in_constructor() 222 void *one, *two, *three; in test_exception_in_destructor() local [all …]
|
| /llvm-project-15.0.7/libcxx/test/std/numerics/numeric.ops/numeric.ops.midpoint/ |
| H A D | midpoint.integer.pass.cpp | 28 constexpr T three{3}; in signed_test() local 35 static_assert(std::midpoint(one, three) == two, ""); in signed_test() 36 static_assert(std::midpoint(three, one) == two, ""); in signed_test() 44 assert(std::midpoint(four, one) == three); in signed_test() 45 assert(std::midpoint(three, four) == three); in signed_test() 46 assert(std::midpoint(four, three) == four); in signed_test() 77 constexpr T three{3}; in unsigned_test() local 85 static_assert(std::midpoint(one, three) == two, ""); in unsigned_test() 94 assert(std::midpoint(four, one) == three); in unsigned_test() 95 assert(std::midpoint(three, four) == three); in unsigned_test() [all …]
|
| /llvm-project-15.0.7/llvm/test/Transforms/SimplifyCFG/ |
| H A D | rangereduce.ll | 26 i32 105, label %three 37 three: 57 ; CHECK: three: 74 three: 105 three: 142 three: 179 three: 213 three: 246 three: 280 three: [all …]
|
| /llvm-project-15.0.7/clang/test/CodeGenCXX/ |
| H A D | cp-blocks-linetables.cpp | 17 zero, one, two, three, four enumerator 24 return I(three); in test() 36 if (y != three) in main() 41 if (y != three) { in main() 47 if (x != three) in main() 49 if (y != three) in main()
|
| /llvm-project-15.0.7/llvm/test/CodeGen/AArch64/GlobalISel/ |
| H A D | opt-shifted-reg-compare.mir | 32 %three:gpr(s32) = G_CONSTANT i32 3 58 %three:gpr(s32) = G_CONSTANT i32 3 84 %three:gpr(s32) = G_CONSTANT i32 3 110 %three:gpr(s32) = G_CONSTANT i32 3 136 %three:gpr(s32) = G_CONSTANT i32 3 162 %three:gpr(s32) = G_CONSTANT i32 3 188 %three:gpr(s32) = G_CONSTANT i32 3 213 %three:gpr(s32) = G_CONSTANT i32 3 238 %three:gpr(s32) = G_CONSTANT i32 3 263 %three:gpr(s32) = G_CONSTANT i32 3 [all …]
|
| /llvm-project-15.0.7/mlir/unittests/Analysis/Presburger/ |
| H A D | MPIntTest.cpp | 164 TypeParam x(1ll << 50), one(1), two(2), three(3); in TYPED_TEST() local 168 EXPECT_EQ(floorDiv(3 * y, three), y); in TYPED_TEST() 169 EXPECT_EQ(ceilDiv(3 * y, three), y); in TYPED_TEST() 170 EXPECT_EQ(floorDiv(3 * y - 1, three), y - 1); in TYPED_TEST() 171 EXPECT_EQ(ceilDiv(3 * y - 1, three), y); in TYPED_TEST() 172 EXPECT_EQ(floorDiv(3 * y - 2, three), y - 1); in TYPED_TEST() 173 EXPECT_EQ(ceilDiv(3 * y - 2, three), y); in TYPED_TEST() 175 EXPECT_EQ(mod(3 * y, three), 0); in TYPED_TEST() 176 EXPECT_EQ(mod(3 * y + 1, three), one); in TYPED_TEST() 177 EXPECT_EQ(mod(3 * y + 2, three), two); in TYPED_TEST()
|
| /llvm-project-15.0.7/lldb/test/Shell/SymbolFile/NativePDB/ |
| H A D | function-types-classes.cpp | 40 R three(A a, B b) { return MakeResult<R>::result(); } in three() function 91 auto e = &three<A::B::S*, B::A::S*, A::C::S&>; 93 auto f = &three<A::C::S&, A::B::S*, B::A::S*>; 95 auto g = &three<B::A::S*, A::C::S&, A::B::S*>; 108 auto incomplete = &three<Incomplete*, Incomplete**, const Incomplete*>;
|
| /llvm-project-15.0.7/compiler-rt/test/asan/TestCases/Linux/ |
| H A D | clang_gcc_abi.cpp | 12 volatile int three = 3; in boom() local 13 char * volatile s = (char *)malloc(three); in boom() 15 return s[three]; //BOOM in boom()
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-strings/ |
| H A D | radix-filename.test | 5 RUN: echo three >> %t 23 CHECK-NONE: [[FILE]]: three 30 CHECK-DEC: [[FILE]]: 8 three 37 CHECK-OCT: [[FILE]]: 10 three 44 CHECK-HEX: [[FILE]]: 8 three
|
| H A D | radix.test | 7 three 31 CHECK-NONE: {{^}}three 38 CHECK-DEC: {{^}} 8 three 45 CHECK-OCT: {{^}} 10 three 52 CHECK-HEX: {{^}} 8 three
|
| /llvm-project-15.0.7/clang/test/Sema/ |
| H A D | builtins-elementwise-math.c | 67 enum f { three }; in test_builtin_elementwise_add_sat() enumerator 68 enum f x = __builtin_elementwise_add_sat(one, three); in test_builtin_elementwise_add_sat() 125 enum f { three }; in test_builtin_elementwise_sub_sat() enumerator 126 enum f x = __builtin_elementwise_sub_sat(one, three); in test_builtin_elementwise_sub_sat() 180 enum f { three }; in test_builtin_elementwise_max() enumerator 181 enum f x = __builtin_elementwise_max(one, three); in test_builtin_elementwise_max() 235 enum f { three }; in test_builtin_elementwise_min() enumerator 236 enum f x = __builtin_elementwise_min(one, three); in test_builtin_elementwise_min()
|
| /llvm-project-15.0.7/libcxx/docs/Status/ |
| H A D | SpaceshipProjects.csv | 5 | `[expos.only.func] <https://wg21.link/expos.only.func>`_,"| `synth-three-way <https://reviews.llv… 6 | `synth-three-way-result <https://reviews.llvm.org/D107721>`_",[cmp.concept],Kent Ross,|Complete| 7 | `[comparisons.three.way] <https://wg21.link/comparisons.three.way>`_,| `compare_three_way <https:… 14 … `[alg.three.way] <https://wg21.link/alg.three.way>`_,| `lexicographical_compare_three_way <https:… 15 …>`_,| `coroutine_handle <https://reviews.llvm.org/D109433>`_,[comparisons.three.way],Chuanqi Xu,|C… 17 …ps://wg21.link/syserr.errcat.nonvirtuals>`_,| error_category,[comparisons.three.way],Unassigned,|N… 28 | `[unique.ptr.special] <https://wg21.link/unique.ptr.special>`_,| unique_ptr,[comparisons.three.wa… 29 … <https://wg21.link/util.smartptr.shared.cmp>`_,| shared_ptr,[comparisons.three.way],Unassigned,|N… 34 | `[stacktrace.basic.cmp] <https://wg21.link/stacktrace.basic.cmp>`_,| basic_stacktrace,[alg.three.…
|
| /llvm-project-15.0.7/clang/test/Parser/ |
| H A D | pragma-fenv_access.c | 24 CONST float three = 3.0F ; in main() local 30 CONST float frac = one/three; in main() 43 e1 = (int)one, e3 = (int)three, e4 = (int)four, e_four_quarters = (int)(frac_ok * 4) in main()
|
| /llvm-project-15.0.7/clang/test/CXX/dcl.dcl/dcl.attr/dcl.attr.nodiscard/ |
| H A D | p2.cpp | 49 fp3 three; in f() local 54 …three(); // expected-warning {{ignoring return value of function declared with 'nodiscard' attribu… in f() 60 (void)three(); in f()
|
| /llvm-project-15.0.7/llvm/test/MC/ELF/ |
| H A D | dot-symbol-assignment.s | 11 three: label 15 . = three + 9
|
| /llvm-project-15.0.7/llvm/test/CodeGen/AMDGPU/ |
| H A D | attr-amdgpu-num-sgpr.ll | 12 %three = load volatile i32, i32 addrspace(4)* undef 21 …call void asm sideeffect "", "s,s,s,s,s,s,s,s,s,s"(i32 %one, i32 %two, i32 %three, i32 %four, i32 … 24 store volatile i32 %three, i32 addrspace(1)* undef 64 ; i32 %one, i32 %two, i32 %three, i32 %four) #2 { 84 ; store i32 %three, i32 addrspace(1)* %out3 101 ; i32 %one, i32 %two, i32 %three, i32 %four) #2 { 116 ; store i32 %three, i32 addrspace(1)* %out3
|
| H A D | replace-lds-by-ptr-indirect-call-signature-match.ll | 5 ; There are three lds globals defined here, and these three lds are used respectively within 6 ; three non-kernel functions. There is one kernel which *indirectly* calls one of the non-kernel 7 ; functions. But since all the three non-kernel functions have same signature, all three 9 ; pointer replacement for three lds globals.
|
| /llvm-project-15.0.7/clang/test/CodeGen/ |
| H A D | designated-initializers.c | 94 int three; member 105 .a.three = 3, 111 .a.three = 13,
|
| /llvm-project-15.0.7/llvm/test/tools/dsymutil/Inputs/ |
| H A D | obfuscated.map | 3 three 14 three.c
|
| H A D | obfuscated.2.map | 15 three 16 three.c
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/data-formatter/poarray/ |
| H A D | main.mm | 7 id three; field 18 tobjects->three = dictionary;
|
| /llvm-project-15.0.7/mlir/test/mlir-tblgen/ |
| H A D | attr-or-type-format-roundtrip.mlir | 4 // CHECK: !test.type_with_format<111, three = #test<attr_ugly begin 5 : index end>, two = "foo"> 5 // CHECK: !test.type_with_format<2147, three = "hi", two = "hi"> 6 …type_with_format<111, three = #test<attr_ugly begin 5 : index end>, two = "foo">) -> !test.type_wi…
|
| /llvm-project-15.0.7/libcxx/test/libcxx/algorithms/ |
| H A D | debug_less.pass.cpp | 85 MT1 three(3); in test_passing() local 113 assert(d(one, three) == true); in test_passing() 117 assert(d(three, one) == false); in test_passing() 127 assert(d(one, three) == true); in test_passing()
|
| /llvm-project-15.0.7/llvm/test/CodeGen/ARM/ |
| H A D | switch-minsize.ll | 30 ; CHECK-NEXT: LBB0_5: @ %three 40 i32 994, label %three 50 three:
|
| /llvm-project-15.0.7/llvm/test/CodeGen/SystemZ/ |
| H A D | and-02.ll | 14 ; ...but RISBLG is available as a three-address form. 77 ; ...although the three-address case should use RISBLG. 104 ; ...but the three-address case can use RISBLG. 122 ; ...but RISBLG is OK in the three-address case. 158 ; ...although the three-address case should use RISBLG. 194 ; ...or RISBLG for the three-address case.
|