| /llvm-project-15.0.7/polly/lib/External/isl/ |
| H A D | isl_imath.c | 35 mpz_t temp; in isl_imath_addmul_ui() local 36 mp_int_init(&temp); in isl_imath_addmul_ui() 39 mp_int_mul(op1, &temp, &temp); in isl_imath_addmul_ui() 42 mp_int_clear(&temp); in isl_imath_addmul_ui() 47 mpz_t temp; in isl_imath_submul_ui() local 48 mp_int_init(&temp); in isl_imath_submul_ui() 51 mp_int_mul(op1, &temp, &temp); in isl_imath_submul_ui() 62 mpz_t temp; in isl_imath_cdiv_q_ui() local 63 mp_int_init(&temp); in isl_imath_cdiv_q_ui() 76 mpz_t temp; in isl_imath_fdiv_q_ui() local [all …]
|
| /llvm-project-15.0.7/clang/test/Analysis/cert/ |
| H A D | env34-c-cert-examples.c | 35 const char *temp = getenv("TMP"); in correct_usage_1() local 36 if (temp != NULL) { in correct_usage_1() 39 strcpy(tmpvar, temp); in correct_usage_1() 47 temp = getenv("TEMP"); in correct_usage_1() 48 if (temp != NULL) { in correct_usage_1() 51 strcpy(tempvar, temp); in correct_usage_1() 73 if (temp != NULL) { in correct_usage_2() 74 tmpvar = strdup(temp); in correct_usage_2() 82 temp = getenv("TEMP"); in correct_usage_2() 83 if (temp != NULL) { in correct_usage_2() [all …]
|
| /llvm-project-15.0.7/libcxx/test/std/input.output/file.streams/fstreams/ofstream.cons/ |
| H A D | string.pass.cpp | 23 std::string temp = get_temp_file_name(); in main() local 25 std::ofstream fs(temp); in main() 29 std::ifstream fs(temp); in main() 35 std::ifstream fs(temp, std::ios_base::out); in main() 40 std::remove(temp.c_str()); in main() 44 std::wofstream fs(temp); in main() 48 std::wifstream fs(temp); in main() 54 std::wifstream fs(temp, std::ios_base::out); in main() 59 std::remove(temp.c_str()); in main()
|
| H A D | pointer.pass.cpp | 23 std::string temp = get_temp_file_name(); in main() local 25 std::ofstream fs(temp.c_str()); in main() 29 std::ifstream fs(temp.c_str()); in main() 35 std::ifstream fs(temp.c_str(), std::ios_base::out); in main() 40 std::remove(temp.c_str()); in main() 44 std::wofstream fs(temp.c_str()); in main() 48 std::wifstream fs(temp.c_str()); in main() 54 std::wifstream fs(temp.c_str(), std::ios_base::out); in main() 59 std::remove(temp.c_str()); in main()
|
| H A D | move.pass.cpp | 23 std::string temp = get_temp_file_name(); in main() local 25 std::ofstream fso(temp.c_str()); in main() 30 std::ifstream fs(temp.c_str()); in main() 35 std::remove(temp.c_str()); in main() 39 std::wofstream fso(temp.c_str()); in main() 44 std::wifstream fs(temp.c_str()); in main() 49 std::remove(temp.c_str()); in main()
|
| /llvm-project-15.0.7/libcxx/test/libcxx/input.output/file.streams/fstreams/ofstream.cons/ |
| H A D | wchar_pointer.pass.cpp | 24 std::wstring temp = get_wide_temp_file_name(); in main() local 26 std::ofstream fs(temp.c_str()); in main() 30 std::ifstream fs(temp.c_str()); in main() 36 std::ifstream fs(temp.c_str(), std::ios_base::out); in main() 41 _wremove(temp.c_str()); in main() 43 std::wofstream fs(temp.c_str()); in main() 47 std::wifstream fs(temp.c_str()); in main() 53 std::wifstream fs(temp.c_str(), std::ios_base::out); in main() 58 _wremove(temp.c_str()); in main()
|
| /llvm-project-15.0.7/polly/lib/External/isl/imath/ |
| H A D | gmp_compat.c | 156 mp_int temp = &tempz; in GMPZAPI() local 157 mp_int_init(temp); in GMPZAPI() 161 mp_int_clear(temp); in GMPZAPI() 198 mp_int_init(temp); in GMPZAPI() 203 mp_int_clear(temp); in GMPZAPI() 214 mp_int_clear(temp); in GMPZAPI() 226 mp_int_clear(temp); in GMPZAPI() 237 mp_int_clear(temp); in GMPZAPI() 255 mp_int_clear(temp); in GMPZAPI() 266 mp_int_clear(temp); in GMPZAPI() [all …]
|
| /llvm-project-15.0.7/llvm/test/CodeGen/PowerPC/ |
| H A D | ppc64-byval-larger-struct.ll | 155 store i8 %.unpack0, i8* %.temp.0.gep, align 1 157 store i8 %.unpack1, i8* %.temp.1.gep, align 1 159 store i8 %.unpack2, i8* %.temp.2.gep, align 1 161 store i8 %.unpack3, i8* %.temp.3.gep, align 1 163 store i8 %.unpack4, i8* %.temp.4.gep, align 1 165 store i8 %.unpack5, i8* %.temp.5.gep, align 1 167 store i8 %.unpack6, i8* %.temp.6.gep, align 1 169 store i8 %.unpack7, i8* %.temp.7.gep, align 1 171 store i8 %.unpack8, i8* %.temp.8.gep, align 1 172 call void @callee(i8* nonnull %.temp.0.gep) [all …]
|
| /llvm-project-15.0.7/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/ |
| H A D | p6.cpp | 7 template<class A> void temp(A); 10 apply(0, &temp); in test0() 11 apply(0, &temp<>); in test0() 14 apply(0, &temp<int>); in test0() 17 apply(0, &temp<long>); // expected-error {{no matching function for call to 'apply'}} in test0() 55 template<class T> void temp(T); 58 invoke(&temp); // expected-error {{no matching function for call to 'invoke'}} in test0() 59 invoke(&temp<>); // expected-error {{no matching function for call to 'invoke'}} in test0() 62 invoke(&temp<int>); in test0()
|
| /llvm-project-15.0.7/clang/test/SemaObjCXX/ |
| H A D | block-variable-move.mm | 23 __block MoveOnly temp; 24 …MoveOnly temp2 = temp; // expected-error {{call to implicitly-deleted copy constructor of 'MoveOnl… 25 MoveOnly temp3 = std::move(temp); // ok 29 __block MoveOnly temp; 30 return temp; // expected-error {{call to implicitly-deleted copy constructor of 'MoveOnly'}} 34 __block MoveOnly temp; 35 return std::move(temp); // ok 41 __block MoveOnlySub temp; 42 return std::move(temp); // ok
|
| /llvm-project-15.0.7/libcxx/test/std/input.output/file.streams/fstreams/ofstream.assign/ |
| H A D | move_assign.pass.cpp | 23 std::string temp = get_temp_file_name(); in main() local 25 std::ofstream fso(temp.c_str()); in main() 31 std::ifstream fs(temp.c_str()); in main() 36 std::remove(temp.c_str()); in main() 40 std::wofstream fso(temp.c_str()); in main() 46 std::wifstream fs(temp.c_str()); in main() 51 std::remove(temp.c_str()); in main()
|
| /llvm-project-15.0.7/libcxx/test/std/input.output/file.streams/fstreams/ofstream.members/ |
| H A D | open_pointer.pass.cpp | 23 std::string temp = get_temp_file_name(); in main() local 30 fs.open(temp.c_str()); in main() 35 std::ifstream fs(temp.c_str()); in main() 40 std::remove(temp.c_str()); in main() 49 fs.open(temp.c_str()); in main() 54 std::wifstream fs(temp.c_str()); in main() 59 std::remove(temp.c_str()); in main()
|
| H A D | open_string.pass.cpp | 23 std::string temp = get_temp_file_name(); in main() local 30 fs.open(temp); in main() 35 std::ifstream fs(temp.c_str()); in main() 40 std::remove(temp.c_str()); in main() 49 fs.open(temp); in main() 54 std::wifstream fs(temp.c_str()); in main() 59 std::remove(temp.c_str()); in main()
|
| H A D | rdbuf.pass.cpp | 23 std::string temp = get_temp_file_name(); in main() local 25 std::ofstream fs(temp.c_str()); in main() 29 std::remove(temp.c_str()); in main() 33 std::wofstream fs(temp.c_str()); in main() 37 std::remove(temp.c_str()); in main()
|
| H A D | close.pass.cpp | 23 std::string temp = get_temp_file_name(); in main() local 27 fs.open(temp.c_str()); in main() 32 std::remove(temp.c_str()); in main() 38 fs.open(temp.c_str()); in main() 43 std::remove(temp.c_str()); in main()
|
| /llvm-project-15.0.7/libcxx/test/libcxx/input.output/file.streams/fstreams/ofstream.members/ |
| H A D | open_wchar_pointer.pass.cpp | 24 std::wstring temp = get_wide_temp_file_name(); in main() local 31 fs.open(temp.c_str()); in main() 36 std::ifstream fs(temp.c_str()); in main() 41 _wremove(temp.c_str()); in main() 48 fs.open(temp.c_str()); in main() 53 std::wifstream fs(temp.c_str()); in main() 58 _wremove(temp.c_str()); in main()
|
| /llvm-project-15.0.7/libcxx/test/std/input.output/file.streams/fstreams/filebuf.members/ |
| H A D | open_pointer.pass.cpp | 20 std::string temp = get_temp_file_name(); in main() local 23 assert(f.open(temp.c_str(), std::ios_base::out) != 0); in main() 29 assert(f.open(temp.c_str(), std::ios_base::in) != 0); in main() 35 std::remove(temp.c_str()); in main() 40 assert(f.open(temp.c_str(), std::ios_base::out) != 0); in main() 46 assert(f.open(temp.c_str(), std::ios_base::in) != 0); in main() 52 std::remove(temp.c_str()); in main()
|
| /llvm-project-15.0.7/clang/test/CodeGen/ |
| H A D | flt_eval_macro.cpp | 38 float temp; in func() local 40 temp = X + Y + Z; in func() 42 temp = X * Y * Z; in func() 44 temp = X * Y - Z; in func() 78 return temp; in func()
|
| /llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/bugprone/ |
| H A D | unhandled-self-assignment.cpp | 206 TemplatePtrField<T> temp; in operator =() local 207 TemplatePtrField<T> temp2(temp); in operator =() 332 CopyAndSwap1 temp(object); in operator =() local 333 doSwap(temp); in operator =() 367 CopyAndSwap3 temp(object); in operator =() local 368 std::swap(p, temp.p); in operator =() 380 TemplateCopyAndSwap<T> temp(object); in operator =() local 381 std::swap(p, temp.p); in operator =() 393 CopyAndMove1 temp(object); in operator =() local 394 *this = std::move(temp); in operator =() [all …]
|
| /llvm-project-15.0.7/lld/test/ELF/linkerscript/ |
| H A D | diag3.test | 8 boom ^temp : { *(.temp) } 11 # CHECK: 8: malformed number: ^temp 12 # CHECK-NEXT: >>> boom ^temp : { *(.temp) }
|
| H A D | diag4.test | 9 boom ^temp : { *(.temp) } 12 # CHECK: 9: malformed number: ^temp 13 # CHECK-NEXT: >>> boom ^temp : { *(.temp) }
|
| /llvm-project-15.0.7/libcxx/test/std/input.output/file.streams/fstreams/fstream.cons/ |
| H A D | pointer.pass.cpp | 23 std::string temp = get_temp_file_name(); in main() local 25 std::fstream fs(temp.c_str(), std::ios_base::in | std::ios_base::out in main() 33 std::remove(temp.c_str()); in main() 37 std::wfstream fs(temp.c_str(), std::ios_base::in | std::ios_base::out in main() 45 std::remove(temp.c_str()); in main()
|
| H A D | string.pass.cpp | 23 std::string temp = get_temp_file_name(); in main() local 25 std::fstream fs(temp, in main() 34 std::remove(temp.c_str()); in main() 38 std::wfstream fs(temp, in main() 47 std::remove(temp.c_str()); in main()
|
| /llvm-project-15.0.7/libcxx/test/std/input.output/file.streams/fstreams/fstream.members/ |
| H A D | close.pass.cpp | 23 std::string temp = get_temp_file_name(); in main() local 27 fs.open(temp.c_str(), std::ios_base::out); in main() 32 std::remove(temp.c_str()); in main() 38 fs.open(temp.c_str(), std::ios_base::out); in main() 43 std::remove(temp.c_str()); in main()
|
| /llvm-project-15.0.7/libcxx/test/libcxx/input.output/file.streams/fstreams/fstream.cons/ |
| H A D | wchar_pointer.pass.cpp | 24 std::wstring temp = get_wide_temp_file_name(); in main() local 26 std::fstream fs(temp.c_str(), std::ios_base::in | std::ios_base::out in main() 34 _wremove(temp.c_str()); in main() 36 std::wfstream fs(temp.c_str(), std::ios_base::in | std::ios_base::out in main() 44 _wremove(temp.c_str()); in main()
|