Home
last modified time | relevance | path

Searched refs:F (Results 1 – 25 of 3400) sorted by relevance

12345678910>>...136

/llvm-project-15.0.7/clang/test/CodeGen/
H A Dlibcall-declarations.c264 F(atan2), F(atan2f), F(atan2l), F(abs), F(labs),
265 F(llabs), F(copysign), F(copysignf), F(copysignl), F(fabs),
266 F(fabsf), F(fabsl), F(fmod), F(fmodf), F(fmodl),
268 F(ldexpl), F(modf), F(modff), F(modfl), F(nan),
269 F(nanf), F(nanl), F(pow), F(powf), F(powl),
271 F(acoshl), F(asin), F(asinf), F(asinl), F(asinh),
274 F(cbrtl), F(ceil), F(ceilf), F(ceill), F(cos),
277 F(erfcl), F(exp), F(expf), F(expl), F(exp2),
280 F(floorl), F(fma), F(fmaf), F(fmal), F(fmax),
286 F(log10l), F(log1p), F(log1pf), F(log1pl), F(log2),
[all …]
/llvm-project-15.0.7/libcxx/test/std/utilities/format/format.functions/
H A Dlocale-specific_form.pass.cpp603 template <class F, class CharT>
689 template <class F, class CharT>
775 template <class F, class CharT>
861 template <class F, class CharT>
947 template <class F, class CharT>
1065 template <class F, class CharT>
1183 template <class F, class CharT>
1375 template <class F, class CharT>
1567 template <class F, class CharT>
1733 template <class F, class CharT>
[all …]
H A Dformat_tests.h161 CASE(F)
992 template <class F, class CharT, class TestFunction>
1117 template <class F, class CharT, class TestFunction>
1242 template <class F, class CharT, class TestFunction>
1356 template <class F, class CharT, class TestFunction>
1470 template <class F, class CharT, class TestFunction>
1593 template <class F, class CharT, class TestFunction>
1716 template <class F, class CharT, class TestFunction>
1839 template <class F, class CharT, class TestFunction>
1962 template <class F, class CharT, class TestFunction>
[all …]
/llvm-project-15.0.7/clang/test/Analysis/
H A Dstream-error.c16 if (!F) in error_fopen()
20 fclose(F); in error_fopen()
25 if (!F) in error_freopen()
27 F = freopen(0, "w", F); in error_freopen()
28 if (!F) in error_freopen()
37 if (!F) in stream_error_feof()
50 if (!F) in stream_error_ferror()
63 if (!F) in error_fread()
88 if (!F) in error_fwrite()
119 if (!F) in error_fread_fwrite_zerosize()
[all …]
H A Dstream-note.c27 if (!F) in check_note_fopen()
37 if (!F) in check_note_freopen()
42 if (!F) in check_note_freopen()
82 FILE *F; in check_track_null() local
85 fclose(F); in check_track_null()
93 FILE *F; in check_eof_notes_feof_after_feof() local
108 fclose(F); in check_eof_notes_feof_after_feof()
112 FILE *F; in check_eof_notes_feof_after_no_feof() local
131 fclose(F); in check_eof_notes_feof_after_no_feof()
135 FILE *F; in check_eof_notes_feof_or_no_error() local
[all …]
H A Dsimple-stream-checks.c7 if (F != 0) { in checkDoubleFClose()
10 fclose(F); in checkDoubleFClose()
12 fputc(*Data, F); in checkDoubleFClose()
19 if (F != 0) { in checkLeak()
31 if (F != 0) { in checkLeakFollowedByAssert()
35 fclose(F); in checkLeakFollowedByAssert()
41 if (F) in CloseOnlyOnValidFileHandle()
42 fclose(F); in CloseOnlyOnValidFileHandle()
57 return F; in leakOnEnfOfPath3()
63 myfclose(F); in SymbolEscapedThroughFunctionCall()
[all …]
/llvm-project-15.0.7/libcxx/test/std/localization/locale.categories/category.ctype/locale.ctype.byname/
H A Dis_many.pass.cpp34 const F& f = std::use_facet<F>(l); in main()
41 assert(!(m[0] & F::space)); in main()
42 assert( (m[0] & F::print)); in main()
43 assert(!(m[0] & F::cntrl)); in main()
44 assert( (m[0] & F::upper)); in main()
45 assert(!(m[0] & F::lower)); in main()
46 assert( (m[0] & F::alpha)); in main()
47 assert(!(m[0] & F::digit)); in main()
48 assert(!(m[0] & F::punct)); in main()
50 assert(!(m[0] & F::blank)); in main()
[all …]
H A Dis_1.pass.cpp30 typedef std::ctype<wchar_t> F; in main() typedef
31 const F& f = std::use_facet<F>(l); in main()
33 assert(f.is(F::space, L' ')); in main()
34 assert(!f.is(F::space, L'A')); in main()
36 assert(f.is(F::print, L' ')); in main()
42 assert(f.is(F::upper, L'A')); in main()
45 assert(f.is(F::lower, L'a')); in main()
48 assert(f.is(F::alpha, L'a')); in main()
51 assert(f.is(F::digit, L'1')); in main()
54 assert(f.is(F::punct, L'.')); in main()
[all …]
/llvm-project-15.0.7/libcxx/test/std/utilities/meta/meta.trans/meta.trans.other/
H A Dresult_of11.pass.cpp36 struct F {}; struct
37 struct FD : public F {};
116 test_result_of_imp<int (F::* (F &)) () &, int> (); in main()
117 test_result_of_imp<int (F::* (F &)) () const &, int> (); in main()
118 test_result_of_imp<int (F::* (F &)) () volatile &, int> (); in main()
119 test_result_of_imp<int (F::* (F &)) () const volatile &, int> (); in main()
120 test_result_of_imp<int (F::* (F const &)) () const &, int> (); in main()
121 test_result_of_imp<int (F::* (F const &)) () const volatile &, int> (); in main()
136 test_result_of_imp<int (F::* (F )) () &&, int> (); in main()
137 test_result_of_imp<int (F::* (F )) () const &&, int> (); in main()
[all …]
/llvm-project-15.0.7/llvm/lib/Transforms/Utils/
H A DBuildLibCalls.cpp68 if (F.onlyReadsMemory()) in setOnlyReadsMemory()
70 F.setOnlyReadsMemory(); in setOnlyReadsMemory()
105 if (F.doesNotThrow()) in setDoesNotThrow()
107 F.setDoesNotThrow(); in setDoesNotThrow()
237 F.addFnAttr(Attribute::getWithAllocSizeArgs(F.getContext(), ElemSizeArg, in setAllocSize()
252 F.addFnAttr( in setAllocKind()
260 if (!F) in inferNonMandatoryLibFuncAttrs()
273 if (F.getParent() != nullptr && F.getParent()->getRtLibUseGOT()) in inferNonMandatoryLibFuncAttrs()
1235 if (!isLibFreeFunction(&F, TheLibFunc) && !isReallocLikeFn(&F, &TLI)) in inferNonMandatoryLibFuncAttrs()
1249 if (!F->arg_size() || F->isVarArg()) in markRegisterParameterAttributes()
[all …]
/llvm-project-15.0.7/libcxx/test/std/localization/locale.categories/category.ctype/locale.ctype/locale.ctype.members/
H A Dis_many.pass.cpp31 const F& f = std::use_facet<F>(l); in main()
38 assert( (m[0] & F::space)); in main()
39 assert( (m[0] & F::print)); in main()
40 assert(!(m[0] & F::cntrl)); in main()
41 assert(!(m[0] & F::upper)); in main()
42 assert(!(m[0] & F::lower)); in main()
43 assert(!(m[0] & F::alpha)); in main()
44 assert(!(m[0] & F::digit)); in main()
45 assert(!(m[0] & F::punct)); in main()
47 assert( (m[0] & F::blank)); in main()
[all …]
H A Dis_1.pass.cpp26 typedef std::ctype<wchar_t> F; in main() typedef
27 const F& f = std::use_facet<F>(l); in main()
29 assert(f.is(F::space, L' ')); in main()
30 assert(!f.is(F::space, L'A')); in main()
32 assert(f.is(F::print, L' ')); in main()
36 assert(!f.is(F::cntrl, L' ')); in main()
38 assert(f.is(F::upper, L'A')); in main()
41 assert(f.is(F::lower, L'a')); in main()
44 assert(f.is(F::alpha, L'a')); in main()
47 assert(f.is(F::digit, L'1')); in main()
[all …]
/llvm-project-15.0.7/libcxx/test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/
H A Dis_many.pass.cpp28 typedef std::ctype<char> F; in main() typedef
29 const F& f = std::use_facet<F>(l); in main()
36 assert( (m[0] & F::space)); in main()
37 assert( (m[0] & F::print)); in main()
38 assert(!(m[0] & F::cntrl)); in main()
39 assert(!(m[0] & F::upper)); in main()
40 assert(!(m[0] & F::lower)); in main()
41 assert(!(m[0] & F::alpha)); in main()
42 assert(!(m[0] & F::digit)); in main()
43 assert(!(m[0] & F::punct)); in main()
[all …]
H A Dis_1.pass.cpp24 typedef std::ctype<char> F; in main() typedef
25 const F& f = std::use_facet<F>(l); in main()
27 assert(f.is(F::space, ' ')); in main()
28 assert(!f.is(F::space, 'A')); in main()
30 assert(f.is(F::print, ' ')); in main()
34 assert(!f.is(F::cntrl, ' ')); in main()
36 assert(f.is(F::upper, 'A')); in main()
39 assert(f.is(F::lower, 'a')); in main()
42 assert(f.is(F::alpha, 'a')); in main()
45 assert(f.is(F::digit, '1')); in main()
[all …]
/llvm-project-15.0.7/libcxx/test/std/numerics/rand/rand.util/rand.util.canonical/
H A Dgenerate_canonical.pass.cpp26 F f = std::generate_canonical<F, 0>(r); in main()
33 F f = std::generate_canonical<F, 1>(r); in main()
40 F f = std::generate_canonical<F, std::numeric_limits<F>::digits - 1>(r); in main()
47 F f = std::generate_canonical<F, std::numeric_limits<F>::digits>(r); in main()
54 F f = std::generate_canonical<F, std::numeric_limits<F>::digits + 1>(r); in main()
76 F f = std::generate_canonical<F, std::numeric_limits<F>::digits - 1>(r); in main()
80 … ((static_cast<F>(E::max() - E::min()) + F(1)) * (static_cast<F>(E::max() - E::min()) + F(1))))); in main()
86 F f = std::generate_canonical<F, std::numeric_limits<F>::digits>(r); in main()
90 … ((static_cast<F>(E::max() - E::min()) + F(1)) * (static_cast<F>(E::max() - E::min()) + F(1))))); in main()
96 F f = std::generate_canonical<F, std::numeric_limits<F>::digits + 1>(r); in main()
[all …]
/llvm-project-15.0.7/llvm/test/tools/llvm-xray/X86/
H A Dgraph-diff-simple.txt27 #VCEC-DAG: F[[F0NO:[0-9]+]] [label="F0"]
54 #EC-DAG: F[[F0NO:[0-9]+]] [label="F0"]
80 #VC-DAG: F[[F0NO:[0-9]+]] [label="F0"]
92 #VC-DAG: F{{.*}}[[F0NO]] -> F{{.*}}[[N1NO]] [tooltip="F0 -> #1" label="" color="black" labelfontco…
93 #VC-DAG: F{{.*}}[[F0NO]] -> F{{.*}}[[N2NO]] [tooltip="F0 -> #2" label="" color="black" labelfontco…
94 #VC-DAG: F{{.*}}[[F0NO]] -> F{{.*}}[[N3NO]] [tooltip="F0 -> #3" label="" color="black" labelfontco…
107 #ELVL-DAG: F[[F0NO:[0-9]+]] [label="F0"]
133 #EL-DAG: F[[F0NO:[0-9]+]] [label="F0"]
160 #VL-DAG: F[[F0NO:[0-9]+]] [label="F0"]
187 #VLVC-DAG: F[[F0NO:[0-9]+]] [label="F0"]
[all …]
/llvm-project-15.0.7/clang/test/SemaCXX/
H A Dtype-traits.cpp6 #define F(b) (b) ? -1 : 1 macro
648 int t10[F(__is_void(float))]; in is_void()
651 int t13[F(__is_void(bool))]; in is_void()
652 int t14[F(__is_void(char))]; in is_void()
656 int t18[F(__is_void(short))]; in is_void()
658 int t20[F(__is_void(int))]; in is_void()
660 int t22[F(__is_void(long))]; in is_void()
662 int t24[F(__is_void(Union))]; in is_void()
666 int t28[F(__is_void(Enum))]; in is_void()
690 int t22[F(__is_array(int))]; in is_array()
[all …]
/llvm-project-15.0.7/clang/test/Preprocessor/
H A Dmacro_vaopt_expand.cpp23 #undef F
35 #undef F
55 8: F(1)
61 #undef F
69 #undef F
74 12: F(,)
79 #undef F
83 14: F()
84 15: F(1)
102 18: F()
[all …]
/llvm-project-15.0.7/libcxx/test/std/re/re.regex/re.regex.construct/
H A Diter_iter_flg.pass.cpp40 test(F(s1.begin()), F(s1.end()), std::regex_constants::basic, 1); in main()
41 test(F(s2.begin()), F(s2.end()), std::regex_constants::basic, 1); in main()
42 test(F(s3.begin()), F(s3.end()), std::regex_constants::basic, 2); in main()
43 test(F(s4.begin()), F(s4.end()), std::regex_constants::basic, 0); in main()
55 test(F(s1.begin()), F(s1.end()), std::regex_constants::awk, 0); in main()
56 test(F(s2.begin()), F(s2.end()), std::regex_constants::awk, 0); in main()
57 test(F(s3.begin()), F(s3.end()), std::regex_constants::awk, 0); in main()
58 test(F(s4.begin()), F(s4.end()), std::regex_constants::awk, 2); in main()
60 test(F(s1.begin()), F(s1.end()), std::regex_constants::grep, 1); in main()
61 test(F(s2.begin()), F(s2.end()), std::regex_constants::grep, 1); in main()
[all …]
/llvm-project-15.0.7/llvm/test/Analysis/MustExecute/
H A Dmust_be_executed_context.ll14 ; F();
25 ; F | A, B, E, F
41 ; MBEC-NEXT: [F: simple_conditional] call void @F()
50 ; MBEC-NEXT: [F: simple_conditional] call void @F()
65 ; MBEC-NEXT: [F: simple_conditional] call void @F()
77 ; MBEC-NEXT: [F: simple_conditional] call void @F()
92 ; MBEC-NEXT: [F: simple_conditional] call void @F()
101 ; MBEC-NEXT: [F: simple_conditional] call void @F()
113 ; MBEC-NEXT: [F: simple_conditional] call void @F()
142 ; F();
[all …]
/llvm-project-15.0.7/llvm/include/llvm/Analysis/
H A DTargetLibraryInfo.h64 AvailableArray[F/4] &= ~(3 << 2*(F&3)); in setState()
65 AvailableArray[F/4] |= State << 2*(F&3); in setState()
68 return static_cast<AvailabilityState>((AvailableArray[F/4] >> 2*(F&3)) & 3); in getState()
125 setState(F, Unavailable); in setUnavailable()
130 setState(F, StandardName); in setAvailable()
137 setState(F, CustomName); in setAvailableWithName()
237 if (!F)
324 return Impl->getState(F); in getState()
328 bool has(LibFunc F) const { in has() argument
346 switch (F) { in hasOptimizedCodeGen()
[all …]
/llvm-project-15.0.7/llvm/unittests/Transforms/Utils/
H A DBasicBlockUtilsTest.cpp40 for (BasicBlock &BB : F) in getBasicBlockByName()
62 DominatorTree DT(*F); in TEST()
88 DominatorTree DT(*F); in TEST()
124 DominatorTree DT(*F); in TEST()
178 DominatorTree DT(*F); in TEST()
254 DominatorTree DT(*F); in TEST()
323 DominatorTree DT(*F); in TEST()
358 DominatorTree DT(*F); in TEST()
385 DominatorTree DT(*F); in TEST()
409 DominatorTree DT(*F); in TEST()
[all …]
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DPreISelIntrinsicLowering.cpp30 static bool lowerLoadRelative(Function &F) { in lowerLoadRelative() argument
31 if (F.use_empty()) in lowerLoadRelative()
37 Type *Int8Ty = Type::getInt8Ty(F.getContext()); in lowerLoadRelative()
41 if (!CI || CI->getCalledOperand() != &F) in lowerLoadRelative()
75 if (F.use_empty()) in lowerObjCCall()
80 Module *M = F.getParent(); in lowerObjCCall()
84 Fn->setLinkage(F.getLinkage()); in lowerObjCCall()
97 if (CB->getCalledFunction() != &F) { in lowerObjCCall()
138 for (Function &F : M) { in lowerIntrinsics()
140 Changed |= lowerLoadRelative(F); in lowerIntrinsics()
[all …]
/llvm-project-15.0.7/llvm/lib/Transforms/IPO/
H A DDeadArgumentElimination.cpp124 if (F.isDeclaration() || !F.hasLocalLinkage()) in deleteDeadVarargs()
169 F.getParent()->getFunctionList().insert(F.getIterator(), NF); in deleteDeadVarargs()
170 NF->takeName(&F); in deleteDeadVarargs()
230 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(), in deleteDeadVarargs()
245 F.replaceAllUsesWith(ConstantExpr::getBitCast(NF, F.getType())); in deleteDeadVarargs()
275 if ((F.hasLocalLinkage() && !LiveFunctions.count(&F)) && in removeDeadArgumentsFromCallers()
432 if (F) { in surveyUse()
493 markLive(F); in surveyFunction()
501 markLive(F); in surveyFunction()
533 markLive(F); in surveyFunction()
[all …]
/llvm-project-15.0.7/flang/lib/Evaluate/
H A Dintrinsics-library.cpp225 FolderFactory<F, F{std::cos}>::Create("cos"),
227 FolderFactory<F, F{std::erf}>::Create("erf"),
229 FolderFactory<F, F{std::exp}>::Create("exp"),
231 FolderFactory<F, F{std::log}>::Create("log"),
235 FolderFactory<F, F{std::sin}>::Create("sin"),
237 FolderFactory<F, F{std::tan}>::Create("tan"),
270 FolderFactory<F, F{std::cos}>::Create("cos"),
272 FolderFactory<F, F{std::exp}>::Create("exp"),
273 FolderFactory<F, F{std::log}>::Create("log"),
277 FolderFactory<F, F{std::sin}>::Create("sin"),
[all …]

12345678910>>...136