Home
last modified time | relevance | path

Searched refs:temp2 (Results 1 – 25 of 35) sorted by relevance

12

/llvm-project-15.0.7/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
H A Dp6.cpp39 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 Dnonmember_swap.pass.cpp44 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 Dmember_swap.pass.cpp43 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 Dnonmember_swap.pass.cpp45 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 Dmember_swap.pass.cpp43 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 Damdgpu-relocs.s72 .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 Dbyval.ll18 %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 Dpr42028-recursion.ll20 %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 D2008-02-01-ReturnAttrs.ll11 %temp2 = load i32, i32* %x, align 4
12 ret i32 %temp2
H A Dcrash.ll73 %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 Dbyval-2.ll18 %temp2 = add i32 %temp1, 1
19 store i32 %temp2, i32* %temp, align 4
H A Dattrs.ll16 %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 Dcopy_assign.pass.cpp80 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 Ddce-after-argument-promotion.ll21 %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 Dschedule-vs-if-nested-loop.ll22 %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 Dschedule-vs-if-nested-loop-failure.ll35 %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 Djump-address.ll33 …%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 Dschedule-fs-loop.ll45 %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 Dschedule-fs-loop-nested-if.ll45 %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 Dvalid-shell.txt60 # 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 Ddiff-error-1.txt3 # RUN: diff -B temp1.txt temp2.txt
/llvm-project-15.0.7/llvm/test/Transforms/SLPVectorizer/AArch64/
H A Dmatmul.ll72 %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 Dstrcmp.ll76 %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 Dstrcmp-1.ll110 %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 Dtype_visibility.cpp56 namespace temp2 { namespace

12