Home
last modified time | relevance | path

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

/freebsd-13.1/lib/libc/gen/
H A D_pthread_stubs.c143 #define FUNC_TYPE(name) __CONCAT(name, _func_t) macro
152 typedef ret (*FUNC_TYPE(name))(void); \
155 FUNC_TYPE(name) func; \
161 FUNC_TYPE(name) func; \
171 typedef ret (*FUNC_TYPE(name))(p0_type); \
174 FUNC_TYPE(name) func; \
180 FUNC_TYPE(name) func; \
193 FUNC_TYPE(name) func; \
199 FUNC_TYPE(name) func; \
212 FUNC_TYPE(name) func; \
[all …]
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/interception/
H A Dinterception.h163 # define FUNC_TYPE(x) x##_type macro
166 typedef ret_type (*FUNC_TYPE(func))(__VA_ARGS__); \
168 extern FUNC_TYPE(func) PTR_TO_REAL(func); \
198 typedef ret_type (*FUNC_TYPE(func))(__VA_ARGS__); \
200 FUNC_TYPE(func) PTR_TO_REAL(func); \
250 typedef ret_type (__stdcall *FUNC_TYPE(func))(__VA_ARGS__); \
252 FUNC_TYPE(func) PTR_TO_REAL(func); \
/freebsd-13.1/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-13.1/crypto/openssl/apps/
H A Dprogs.h14 typedef enum FUNC_TYPE { enum
17 } FUNC_TYPE; typedef
20 FUNC_TYPE type;
H A Dopenssl.c54 static void list_type(FUNC_TYPE ft, int one);
462 FUNC_TYPE tp; in help_main()
523 static void list_type(FUNC_TYPE ft, int one) in list_type()