| /llvm-project-15.0.7/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/ |
| H A D | p6.cpp | 39 template<class A, class B> B temp2(A); 42 apply(0, &temp2); in test3() 43 apply(0, &temp2<>); in test3() 44 apply(0, &temp2<int>); in test3() 47 apply(0, &temp2<long>); // expected-error {{no matching function for call to 'apply'}} in test3() 80 template<class A, class B> B temp2(A); 85 invoke(&temp2); // expected-error {{no matching function for call to 'invoke'}} in test3() 86 invoke(&temp2<>); // expected-error {{no matching function for call to 'invoke'}} in test3() 87 invoke(&temp2<int>); // expected-error {{no matching function for call to 'invoke'}} in test3() 90 invoke(&temp2<int, void>); in test3() [all …]
|
| /llvm-project-15.0.7/libcxx/test/std/input.output/file.streams/fstreams/ofstream.assign/ |
| H A D | nonmember_swap.pass.cpp | 44 std::string& temp2 = temp_files.second; in main() local 45 assert(temp1 != temp2); in main() 48 std::ofstream fs2(temp2.c_str()); in main() 65 std::ifstream fs(temp2.c_str()); in main() 72 std::remove(temp2.c_str()); in main() 77 std::wofstream fs2(temp2.c_str()); in main() 94 std::wifstream fs(temp2.c_str()); in main() 101 std::remove(temp2.c_str()); in main()
|
| H A D | member_swap.pass.cpp | 43 std::string& temp2 = temp_files.second; in main() local 44 assert(temp1 != temp2); in main() 47 std::ofstream fs2(temp2.c_str()); in main() 64 std::ifstream fs(temp2.c_str()); in main() 71 std::remove(temp2.c_str()); in main() 76 std::wofstream fs2(temp2.c_str()); in main() 93 std::wifstream fs(temp2.c_str()); in main() 100 std::remove(temp2.c_str()); in main()
|
| /llvm-project-15.0.7/libcxx/test/std/input.output/file.streams/fstreams/fstream.assign/ |
| H A D | nonmember_swap.pass.cpp | 45 std::string& temp2 = temp_files.second; in main() local 46 assert(temp1 != temp2); in main() 50 std::fstream fs2(temp2.c_str(), std::ios_base::in | std::ios_base::out in main() 69 std::remove(temp2.c_str()); in main() 75 std::wfstream fs2(temp2.c_str(), std::ios_base::in | std::ios_base::out in main() 94 std::remove(temp2.c_str()); in main()
|
| H A D | member_swap.pass.cpp | 43 std::string& temp2 = temp_files.second; in main() local 44 assert(temp1 != temp2); in main() 48 std::fstream fs2(temp2.c_str(), std::ios_base::in | std::ios_base::out in main() 67 std::remove(temp2.c_str()); in main() 73 std::wfstream fs2(temp2.c_str(), std::ios_base::in | std::ios_base::out in main() 92 std::remove(temp2.c_str()); in main()
|
| /llvm-project-15.0.7/lld/test/ELF/ |
| H A D | amdgpu-relocs.s | 72 .type temp2, @object 73 .local temp2 74 .size temp2, 4 75 temp2: label 82 .quad temp2 90 .quad temp2@rel64 120 # NM: 0000000000003928 d temp2 122 # temp2 - foo = 0x3928-0x768 = 0x31c0
|
| /llvm-project-15.0.7/llvm/test/Transforms/ArgumentPromotion/ |
| H A D | byval.ll | 18 %temp2 = add i32 %temp1, 1 19 store i32 %temp2, i32* %temp, align 4 33 %temp2 = add i32 %temp1, 1 34 store i32 %temp2, i32* %temp, align 4 56 %temp2 = add i32 %temp1, 1 57 store i32 %temp2, i32* %temp, align 4 72 %temp2 = add i32 %temp1, 1 73 store i32 %temp2, i32* %temp, align 4 104 %temp2 = add i32 %temp1, 1 105 store i32 %temp2, i32* %temp, align 4 [all …]
|
| H A D | pr42028-recursion.ll | 20 %temp2 = call i32 @test_inf_promote_callee(%S* %temp, %S* %temp1) 37 %temp2 = load %S*, %S** %temp 40 %temp5 = call i32 @test_inf_promote_callee2(%S* %temp4, %S* %temp2)
|
| H A D | 2008-02-01-ReturnAttrs.ll | 11 %temp2 = load i32, i32* %x, align 4 12 ret i32 %temp2
|
| H A D | crash.ll | 73 %temp2 = call i32 @test_inf_promote_callee(%S* %temp, %S* %temp1) 91 %temp2 = load %S*, %S** %temp 94 %temp5 = call i32 @test_inf_promote_callee(%S* %temp4, %S* %temp2)
|
| H A D | byval-2.ll | 18 %temp2 = add i32 %temp1, 1 19 store i32 %temp2, i32* %temp, align 4
|
| H A D | attrs.ll | 16 %temp2 = add i32 %temp1, 1 17 store i32 %temp2, i32* %temp, align 4
|
| /llvm-project-15.0.7/libcxx/test/std/containers/associative/map/map.cons/ |
| H A D | copy_assign.pass.cpp | 80 std::vector<int> temp1, temp2; in balanced_allocs() local 89 temp2.clear(); in balanced_allocs() 90 std::unique_copy(temp1.begin(), temp1.end(), std::back_inserter<std::vector<int>>(temp2)); in balanced_allocs() 91 std::printf("There were %zu different allocators\n", temp2.size()); in balanced_allocs() 93 for (std::vector<int>::const_iterator it = temp2.begin(); it != temp2.end(); ++it ) { in balanced_allocs() 103 temp2.clear(); in balanced_allocs() 104 std::unique_copy(temp1.begin(), temp1.end(), std::back_inserter<std::vector<int>>(temp2)); in balanced_allocs() 105 std::printf("There were %zu different (de)allocators\n", temp2.size()); in balanced_allocs()
|
| /llvm-project-15.0.7/llvm/test/Transforms/PhaseOrdering/ |
| H A D | dce-after-argument-promotion.ll | 21 %temp2 = add i32 %temp1, 1 22 store i32 %temp2, i32* @dummy 23 store i32 %temp2, i32* %X
|
| /llvm-project-15.0.7/llvm/test/CodeGen/AMDGPU/ |
| H A D | schedule-vs-if-nested-loop.ll | 22 %temp2.0 = phi float [ 0.000000e+00, %main_body ], [ %temp2.1, %LOOP ], [ %temp2.1, %ENDIF16 ] 91 %77 = insertelement <4 x float> %76, float %temp2.0, i32 2 99 %temp2.1 = phi float [ %95, %ENDIF19 ], [ 0.000000e+00, %main_body ] 124 %95 = fadd float %temp2.1, 0.000000e+00
|
| H A D | schedule-vs-if-nested-loop-failure.ll | 35 %temp2.0 = phi float [ 0.000000e+00, %main_body ], [ %102, %Flow2 ] 106 %83 = insertelement <4 x float> %82, float %temp2.0, i32 2 114 %temp2.1 = phi float [ %107, %Flow ], [ 0.000000e+00, %main_body ] 140 %102 = phi float [ %temp2.1, %Flow1 ], [ %temp2.1, %LOOP ] 154 %113 = fadd float %temp2.1, 0.000000e+00
|
| H A D | jump-address.ll | 33 …%temp2.0 = phi float [ 1.000000e+00, %main_body ], [ 0.000000e+00, %ELSE ], [ 0.000000e+00, %IF13 ] 37 %18 = insertelement <4 x float> %17, float %temp2.0, i32 2
|
| H A D | schedule-fs-loop.ll | 45 %temp2.0 = phi float [ 0.000000e+00, %IF ], [ %tmp49, %ELSE17 ], [ 1.000000e+00, %ELSE ] 51 %max.0.i1 = call float @llvm.maxnum.f32(float %temp2.0, float 0.000000e+00)
|
| H A D | schedule-fs-loop-nested-if.ll | 45 %temp2.0 = phi float [ 0.000000e+00, %IF ], [ %tmp49, %ELSE17 ], [ 1.000000e+00, %ELSE ] 51 %max.0.i1 = call float @llvm.maxnum.f32(float %temp2.0, float 0.000000e+00)
|
| /llvm-project-15.0.7/llvm/utils/lit/tests/Inputs/shtest-shell/ |
| H A D | valid-shell.txt | 60 # RUN: echo "create a temp2 file" > %T/test/test2/temp2.write 61 …S/check_path.py file %T/test/temp.write %T/test/test1/temp1.write %T/test/test2/temp2.write> %t.out 86 # RUN: cd %T/dir2 && echo "hello" > temp2.txt 87 # RUN: diff temp2.txt ../dir1/temp1.txt 106 # RUN: echo "efghijkl" > %T/testCat/temp2.write 108 # RUN: cat %T/testCat/temp1.write %T/testCat/temp2.write %T/testCat/temp3.write > %T/testCat/tempmu… 122 # RUN: echo "efghijkl" > %T/testCat/temp2.write 123 # RUN: cat %T/testCat/temp1.write %T/testCat/temp2.write | FileCheck --check-prefix=PIPED-CAT-OUTPU… 132 # RUN: echo "qwerty" > %T/testCat/temp2.write
|
| H A D | diff-error-1.txt | 3 # RUN: diff -B temp1.txt temp2.txt
|
| /llvm-project-15.0.7/llvm/test/Transforms/SLPVectorizer/AArch64/ |
| H A D | matmul.ll | 72 %temp2 = load double, double* %arrayidx5.i, align 8 75 %mul8.i = fmul double %temp2, %temp3 82 %mul19.i = fmul double %temp2, %temp5 89 %mul31.i = fmul double %temp2, %temp7 96 %mul43.i = fmul double %temp2, %temp9
|
| /llvm-project-15.0.7/llvm/test/Transforms/InstCombine/ARM/ |
| H A D | strcmp.ll | 76 %temp2 = getelementptr inbounds [5 x i8], [5 x i8]* @bell, i32 0, i32 0 77 %str2 = select i1 %b, i8* %temp1, i8* %temp2 154 %temp2 = getelementptr inbounds [5 x i8], [5 x i8]* @bell, i32 0, i32 0 155 %str2 = select i1 %b, i8* %temp1, i8* %temp2
|
| /llvm-project-15.0.7/llvm/test/Transforms/InstCombine/ |
| H A D | strcmp-1.ll | 110 %temp2 = getelementptr inbounds [5 x i8], [5 x i8]* @bell, i32 0, i32 0 111 %str2 = select i1 %b, i8* %temp1, i8* %temp2 148 %temp2 = getelementptr inbounds [5 x i8], [5 x i8]* @bell, i32 0, i32 0 149 %str2 = select i1 %b, i8* %temp1, i8* %temp2
|
| /llvm-project-15.0.7/clang/test/CodeGenCXX/ |
| H A D | type_visibility.cpp | 56 namespace temp2 { namespace
|