Home
last modified time | relevance | path

Searched defs:func (Results 1 – 25 of 749) sorted by relevance

12345678910>>...30

/llvm-project-15.0.7/libcxx/test/std/language.support/support.coroutines/end.to.end/
H A Doneshot_func.pass.cpp21 template <typename R> struct func { struct
24 func get_return_object() { return {this}; } in get_return_object() argument
39 func() {} in func() argument
40 func(func &&rhs) : h(rhs.h) { rhs.h = nullptr; } in func() argument
43 func &operator=(func &&rhs) { in operator =() argument
53 template <typename F> static func Create(F f) { co_return f(); } in Create() argument
55 template <typename F> func(F f) : func(Create(f)) {} in func() function
57 ~func() { in ~func() argument
63 func(promise_type *promise) in func() function
69 func<int> f = func<int>::Create([]() { return 44; }); in main() argument
H A Dmultishot_func.pass.cpp19 template <typename R> struct func { struct
25 func get_return_object() { return {this}; } in get_return_object() argument
44 func() {} in func() argument
45 func(func &&rhs) : h(rhs.h) { rhs.h = nullptr; } in func() function
48 func &operator=(func &&rhs) { in operator =() argument
58 template <typename F> static func Create(F f) { in Create() argument
64 template <typename F> func(F f) : func(Create(f)) {} in func() argument
66 ~func() { in ~func() argument
72 func(promise_type *promise) in func() function
77 int Do(int acc, int n, func<int> f) { in Do() argument
/llvm-project-15.0.7/libcxx/test/std/experimental/language.support/support.coroutines/end.to.end/
H A Doneshot_func.pass.cpp24 template <typename R> struct func { struct
27 func get_return_object() { return {this}; } in get_return_object() argument
42 func() {} in func() function
43 func(func &&rhs) : h(rhs.h) { rhs.h = nullptr; } in func() argument
46 func &operator=(func &&rhs) { in operator =() argument
56 template <typename F> static func Create(F f) { co_return f(); } in Create() argument
58 template <typename F> func(F f) : func(Create(f)) {} in func() argument
60 ~func() { in ~func() argument
66 func(promise_type *promise) in func() function
75 void Do1(func<int> f) { yield(f()); } in Do1() argument
H A Dmultishot_func.pass.cpp20 template <typename R> struct func { struct
26 func get_return_object() { return {this}; } in get_return_object() argument
45 func() {} in func() argument
46 func(func &&rhs) : h(rhs.h) { rhs.h = nullptr; } in func() argument
49 func &operator=(func &&rhs) { in operator =() argument
59 template <typename F> static func Create(F f) { in Create() argument
65 template <typename F> func(F f) : func(Create(f)) {} in func() argument
67 ~func() { in ~func() argument
73 func(promise_type *promise) in func() function
78 int Do(int acc, int n, func<int> f) { in Do() argument
/llvm-project-15.0.7/flang/test/Semantics/OpenMP/
H A Domp-declare-target02.f9054 subroutine func() subroutine
55 integer :: arr2(10), arr2_to(10), arr2_link(10)
56 integer, save :: arr3(10), arr3_to(10), arr3_link(10)
57 common /blk2/ a2, a2_to, a2_link
58 common /blk3/ a3, a3_to, a3_link
H A Domp-threadprivate02.f9029 subroutine func() subroutine
30 integer :: arr2(10)
31 integer, save :: arr3(10)
32 common /blk2/ a2
33 common /blk3/ a3
/llvm-project-15.0.7/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors.h45 #define SCOPED_INTERCEPTOR_RAW(func, ...) \ argument
64 # define CHECK_REAL_FUNC(func) DCHECK(REAL(func)) argument
67 #define SCOPED_TSAN_INTERCEPTOR(func, ...) \ argument
82 # define TSAN_INTERCEPTOR_FREEBSD_ALIAS(ret, func, ...) \ argument
86 # define TSAN_INTERCEPTOR_FREEBSD_ALIAS(ret, func, ...) argument
90 # define TSAN_INTERCEPTOR_NETBSD_ALIAS(ret, func, ...) \ argument
93 # define TSAN_INTERCEPTOR_NETBSD_ALIAS_THR(ret, func, ...) \ argument
96 # define TSAN_INTERCEPTOR_NETBSD_ALIAS_THR2(ret, func, func2, ...) \ argument
100 # define TSAN_INTERCEPTOR_NETBSD_ALIAS(ret, func, ...) argument
101 # define TSAN_INTERCEPTOR_NETBSD_ALIAS_THR(ret, func, ...) argument
[all …]
/llvm-project-15.0.7/compiler-rt/lib/tsan/rtl-old/
H A Dtsan_interceptors.h41 #define SCOPED_INTERCEPTOR_RAW(func, ...) \ argument
54 # define CHECK_REAL_FUNC(func) \ argument
60 # define CHECK_REAL_FUNC(func) DCHECK(REAL(func)) argument
63 #define SCOPED_TSAN_INTERCEPTOR(func, ...) \ argument
75 #define TSAN_INTERCEPTOR(ret, func, ...) INTERCEPTOR(ret, func, __VA_ARGS__) argument
78 # define TSAN_INTERCEPTOR_NETBSD_ALIAS(ret, func, ...) \ argument
81 # define TSAN_INTERCEPTOR_NETBSD_ALIAS_THR(ret, func, ...) \ argument
84 # define TSAN_INTERCEPTOR_NETBSD_ALIAS_THR2(ret, func, func2, ...) \ argument
88 # define TSAN_INTERCEPTOR_NETBSD_ALIAS(ret, func, ...) argument
89 # define TSAN_INTERCEPTOR_NETBSD_ALIAS_THR(ret, func, ...) argument
[all …]
/llvm-project-15.0.7/compiler-rt/lib/interception/
H A Dinterception.h123 # define DECLARE_WRAPPER(ret_type, func, ...) argument
129 # define DECLARE_WRAPPER(ret_type, func, ...) \ argument
140 # define DECLARE_WRAPPER(ret_type, func, ...) \ argument
147 # define DECLARE_WRAPPER(ret_type, func, ...) \ argument
159 # define DECLARE_REAL(ret_type, func, ...) argument
165 # define DECLARE_REAL(ret_type, func, ...) \ argument
173 # define DECLARE_REAL(ret_type, func, ...) \ argument
203 # define DEFINE_REAL(ret_type, func, ...) argument
218 #define INTERCEPTOR(ret_type, func, ...) \ argument
237 #define INTERCEPTOR(ret_type, func, ...) \ argument
[all …]
H A Dinterception_win.h64 #define INTERCEPT_FUNCTION_WIN(func) \ argument
69 #define INTERCEPT_FUNCTION_WIN(func) \ argument
75 #define INTERCEPT_FUNCTION_VER_WIN(func, symver) INTERCEPT_FUNCTION_WIN(func) argument
77 #define INTERCEPT_FUNCTION_DLLIMPORT(user_dll, provider_dll, func) \ argument
/llvm-project-15.0.7/libc/test/src/math/
H A DFMaxTest.h24 void testNaN(FMaxFunc func) { in testNaN()
34 void testInfArg(FMaxFunc func) { in testInfArg()
42 void testNegInfArg(FMaxFunc func) { in testNegInfArg()
50 void testBothZero(FMaxFunc func) { in testBothZero()
57 void testRange(FMaxFunc func) { in testRange()
79 #define LIST_FMAX_TESTS(T, func) \ argument
H A DFMinTest.h24 void testNaN(FMinFunc func) { in testNaN()
34 void testInfArg(FMinFunc func) { in testInfArg()
42 void testNegInfArg(FMinFunc func) { in testNegInfArg()
50 void testBothZero(FMinFunc func) { in testBothZero()
57 void testRange(FMinFunc func) { in testRange()
79 #define LIST_FMIN_TESTS(T, func) \ argument
H A DCeilTest.h24 void testSpecialNumbers(CeilFunc func) { in testSpecialNumbers()
34 void testRoundedNumbers(CeilFunc func) { in testRoundedNumbers()
43 void testFractions(CeilFunc func) { in testFractions()
66 void testRange(CeilFunc func) { in testRange()
79 #define LIST_CEIL_TESTS(T, func) \ argument
H A DFloorTest.h24 void testSpecialNumbers(FloorFunc func) { in testSpecialNumbers()
34 void testRoundedNumbers(FloorFunc func) { in testRoundedNumbers()
43 void testFractions(FloorFunc func) { in testFractions()
66 void testRange(FloorFunc func) { in testRange()
79 #define LIST_FLOOR_TESTS(T, func) \ argument
H A DRoundTest.h24 void testSpecialNumbers(RoundFunc func) { in testSpecialNumbers()
34 void testRoundedNumbers(RoundFunc func) { in testRoundedNumbers()
43 void testFractions(RoundFunc func) { in testFractions()
66 void testRange(RoundFunc func) { in testRange()
79 #define LIST_ROUND_TESTS(T, func) \ argument
H A DTruncTest.h24 void testSpecialNumbers(TruncFunc func) { in testSpecialNumbers()
34 void testRoundedNumbers(TruncFunc func) { in testRoundedNumbers()
43 void testFractions(TruncFunc func) { in testFractions()
66 void testRange(TruncFunc func) { in testRange()
79 #define LIST_TRUNC_TESTS(T, func) \ argument
H A DLogbTest.h28 void testSpecialNumbers(LogbFunc func) { in testSpecialNumbers()
36 void testPowersOfTwo(LogbFunc func) { in testPowersOfTwo()
56 void testSomeIntegers(LogbFunc func) { in testSomeIntegers()
73 void testRange(LogbFunc func) { in testRange()
89 #define LIST_LOGB_TESTS(T, func) \ argument
H A DRoundToIntegerTest.h43 void test_one_input(RoundToIntegerFunc func, F input, I expected, in test_one_input()
84 void do_infinity_and_na_n_test(RoundToIntegerFunc func) { in do_infinity_and_na_n_test()
90 void testInfinityAndNaN(RoundToIntegerFunc func) { in testInfinityAndNaN()
101 void do_round_numbers_test(RoundToIntegerFunc func) { in do_round_numbers_test()
134 void testRoundNumbers(RoundToIntegerFunc func) { in testRoundNumbers()
145 void do_fractions_test(RoundToIntegerFunc func, int mode) { in do_fractions_test()
161 void testFractions(RoundToIntegerFunc func) { in testFractions()
174 void testIntegerOverflow(RoundToIntegerFunc func) { in testIntegerOverflow()
210 void testSubnormalRange(RoundToIntegerFunc func) { in testSubnormalRange()
246 void testNormalRange(RoundToIntegerFunc func) { in testNormalRange()
[all …]
H A DFDimTest.h22 void test_na_n_arg(FuncPtr func) { in test_na_n_arg()
32 void test_inf_arg(FuncPtr func) { in test_inf_arg()
40 void test_neg_inf_arg(FuncPtr func) { in test_neg_inf_arg()
48 void test_both_zero(FuncPtr func) { in test_both_zero()
55 void test_in_range(FuncPtr func) { in test_in_range()
H A DModfTest.h26 void testSpecialNumbers(ModfFunc func) { in testSpecialNumbers()
42 void testIntegers(ModfFunc func) { in testIntegers()
64 void testFractions(ModfFunc func) { in testFractions()
86 void testRange(ModfFunc func) { in testRange()
103 #define LIST_MODF_TESTS(T, func) \ argument
H A DFrexpTest.h28 void testSpecialNumbers(FrexpFunc func) { in testSpecialNumbers()
41 void testPowersOfTwo(FrexpFunc func) { in testPowersOfTwo()
75 void testSomeIntegers(FrexpFunc func) { in testSomeIntegers()
94 void testRange(FrexpFunc func) { in testRange()
113 #define LIST_FREXP_TESTS(T, func) \ argument
H A DSqrtTest.h28 void test_special_numbers(SqrtFunc func) { in test_special_numbers()
40 void test_denormal_values(SqrtFunc func) { in test_denormal_values()
56 void test_normal_range(SqrtFunc func) { in test_normal_range()
68 void test_all_rounding_modes(SqrtFunc func, T x) { in test_all_rounding_modes()
87 #define LIST_SQRT_TESTS(T, func) \ argument
/llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/
H A Ddecorators.py111 def expectedFailure(func): argument
331 def impl(func): argument
401 def llgs_test(func): argument
514 def skipIfRemote(func): argument
563 def skipIfiOS(func): argument
566 def skipIftvOS(func): argument
569 def skipIfwatchOS(func): argument
592 def skipIfNetBSD(func): argument
597 def skipIfDarwin(func): argument
604 def skipIfLinux(func): argument
[all …]
/llvm-project-15.0.7/clang/test/SemaCXX/
H A Dout-of-line-def-mismatch.cpp20 void N2::N1::S2::func(S1*) {} // expected-error {{out-of-line definition of 'func' does not match a… in func() function in N2::N1::S2
21 void N2::N1::S2::func(C1&, unsigned, const S1*) {} // expected-error {{out-of-line definition of 'f… in func() function in N2::N1::S2
22 void N2::N1::S2::func(S1*, double) {} // expected-error {{out-of-line definition of 'func' does not… in func() function in N2::N1::S2
23 void N2::N1::S2::func(S1, unsigned) {} // expected-error {{out-of-line definition of 'func' does no… in func() function in N2::N1::S2
24 void N2::N1::S2::func(unsigned*, S1*) {} // expected-error {{out-of-line definition of 'func' does … in func() function in N2::N1::S2
/llvm-project-15.0.7/mlir/include/mlir/IR/
H A DThreading.h37 IteratorT end, FuncT &&func) { in failableParallelForEach()
91 FuncT &&func) { in failableParallelForEach()
106 size_t end, FuncT &&func) { in failableParallelForEachN()
118 FuncT &&func) { in parallelForEach()
130 void parallelForEach(MLIRContext *context, RangeT &&range, FuncT &&func) { in parallelForEach()
141 void parallelFor(MLIRContext *context, size_t begin, size_t end, FuncT &&func) { in parallelFor()

12345678910>>...30