Home
last modified time | relevance | path

Searched refs:FUNC_TYPE (Results 1 – 6 of 6) sorted by relevance

/freebsd/lib/libc/gen/
H A D_pthread_stubs.c145 #define FUNC_TYPE(name) __CONCAT(name, _func_t) macro
154 typedef ret (*FUNC_TYPE(name))(void); \
157 FUNC_TYPE(name) func; \
158 func = (FUNC_TYPE(name))__thr_jtable[idx][0]; \
163 FUNC_TYPE(name) func; \
164 func = (FUNC_TYPE(name))__thr_jtable[idx][1]; \
173 typedef ret (*FUNC_TYPE(name))(p0_type); \
176 FUNC_TYPE(name) func; \
177 func = (FUNC_TYPE(name))__thr_jtable[idx][0]; \
182 FUNC_TYPE(name) func; \
[all …]
/freebsd/crypto/openssl/apps/include/
H A Dfunction.h18 typedef enum FUNC_TYPE { enum
21 } FUNC_TYPE; typedef
24 FUNC_TYPE type;
/freebsd/contrib/llvm-project/compiler-rt/lib/interception/
H A Dinterception.h246 # define FUNC_TYPE(x) x##_type macro
249 typedef ret_type (*FUNC_TYPE(func))(__VA_ARGS__); \
251 extern FUNC_TYPE(func) PTR_TO_REAL(func); \
283 typedef ret_type (*FUNC_TYPE(func))(__VA_ARGS__); \
285 FUNC_TYPE(func) PTR_TO_REAL(func); \
333 typedef ret_type (__stdcall *FUNC_TYPE(func))(__VA_ARGS__); \
335 FUNC_TYPE(func) PTR_TO_REAL(func); \
/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerInterceptors.cpp20 #define FUNC_TYPE(x) x##_type macro
22 typedef ret_type (*FUNC_TYPE(func))(__VA_ARGS__); \
24 FUNC_TYPE(func) PTR_TO_REAL(func); \
/freebsd/crypto/openssl/apps/
H A Dopenssl.c334 FUNC_TYPE tp; in help_main()
H A Dlist.c1048 static void list_type(FUNC_TYPE ft, int one) in list_type()