Searched refs:func (Results 1 - 25 of 1364) sorted by relevance

1234567891011>>

/freebsd-12-stable/lib/csu/mips/
H A Dcrt.h32 #define INIT_CALL_SEQ(func) \
41 ".local " __STRING(func) "\n" \
42 "jal " __STRING(func) "\n" \
46 #define INIT_CALL_SEQ(func) \
53 ".local " __STRING(func) "\n" \
54 "jal " __STRING(func) "\n" \
/freebsd-12-stable/lib/csu/amd64/
H A Dcrt.h30 #define INIT_CALL_SEQ(func) "call " __STRING(func)
/freebsd-12-stable/lib/csu/i386/
H A Dcrt.h30 #define INIT_CALL_SEQ(func) "call " __STRING(func)
/freebsd-12-stable/lib/csu/powerpc/
H A Dcrt.h31 #define INIT_CALL_SEQ(func) "bl " __STRING(func) "; nop"
/freebsd-12-stable/lib/csu/powerpc64/
H A Dcrt.h31 #define INIT_CALL_SEQ(func) "bl " __STRING(func) "; nop"
/freebsd-12-stable/lib/csu/riscv/
H A Dcrt.h7 #define INIT_CALL_SEQ(func) "call " __STRING(func)
/freebsd-12-stable/lib/csu/sparc64/
H A Dcrt.h31 #define INIT_CALL_SEQ(func) "call " __STRING(func) "; nop"
/freebsd-12-stable/contrib/libucl/src/
H A Ducl_emitter_utils.c45 .func = NULL,
51 .func = NULL,
57 .func = NULL,
63 .func = NULL,
69 .func = NULL,
107 const struct ucl_emitter_functions *func = ctx->func; local
109 func->ucl_emitter_append_character ('"', 1, func->ud);
116 func
174 const struct ucl_emitter_functions *func = ctx->func; local
206 const struct ucl_emitter_functions *func = ctx->func; local
[all...]
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/interception/
H A Dinterception_mac.h23 #define INTERCEPT_FUNCTION_MAC(func)
24 #define INTERCEPT_FUNCTION_VER_MAC(func, symver)
H A Dinterception_linux.h25 bool InterceptFunction(const char *name, uptr *ptr_to_real, uptr func,
28 uptr func, uptr wrapper);
31 #define INTERCEPT_FUNCTION_LINUX_OR_FREEBSD(func) \
33 #func, \
34 (::__interception::uptr *) & REAL(func), \
35 (::__interception::uptr) & (func), \
36 (::__interception::uptr) & WRAP(func))
40 #define INTERCEPT_FUNCTION_VER_LINUX_OR_FREEBSD(func, symver) \
42 #func, symver, \
43 (::__interception::uptr *) & REAL(func), \
[all...]
H A Dinterception.h123 # define DECLARE_WRAPPER(ret_type, func, ...)
129 # define DECLARE_WRAPPER(ret_type, func, ...) \
130 extern "C" ret_type func(__VA_ARGS__);
131 # define DECLARE_WRAPPER_WINAPI(ret_type, func, ...) \
132 extern "C" __declspec(dllimport) ret_type __stdcall func(__VA_ARGS__);
137 # define DECLARE_WRAPPER(ret_type, func, ...)
145 # define DECLARE_WRAPPER(ret_type, func, ...) \
146 extern "C" ret_type func(__VA_ARGS__) \
147 __attribute__((alias("__interceptor_" #func), visibility("default")));
152 # define DECLARE_WRAPPER(ret_type, func,
[all...]
H A Dinterception_win.h64 #define INTERCEPT_FUNCTION_WIN(func) \
65 ::__interception::OverrideFunction(#func, \
66 (::__interception::uptr)WRAP(func), \
67 (::__interception::uptr *)&REAL(func))
69 #define INTERCEPT_FUNCTION_WIN(func) \
70 ::__interception::OverrideFunction((::__interception::uptr)func, \
71 (::__interception::uptr)WRAP(func), \
72 (::__interception::uptr *)&REAL(func))
75 #define INTERCEPT_FUNCTION_VER_WIN(func, symver) INTERCEPT_FUNCTION_WIN(func)
[all...]
/freebsd-12-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/docsExamples/
H A Drenormalize.d48 @func[execname] = count();
53 normalize(@func, (timestamp - start) / 1000000000);
54 printa(@func);
/freebsd-12-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/
H A Dtst.denormalize.d50 @func[i % 5] = sum(i * 100);
57 normalize(@func, 5);
60 denormalize(@func);
61 printa(@func);
H A Dtst.cleardenormalize.d52 @func[i%5] = sum(i * 100);
60 denormalize(@func);
61 printa(@func);
63 clear(@func);
66 printa(@func);
74 denormalize(@func);
75 printa(@func);
H A Dtst.clearnormalize.d51 @func[i % 5] = sum(i * 100);
59 normalize(@func, 5);
60 printa(@func);
62 clear(@func);
65 printa(@func);
73 normalize(@func, 5);
74 printa(@func);
/freebsd-12-stable/crypto/heimdal/lib/krb5/
H A Dadd_et_list.c38 * Call func (probably a comerr-generated function) with a pointer to
42 * @param func The generated com_err et function.
52 void (*func)(struct et_list **))
54 (*func)(&context->et_list);
/freebsd-12-stable/lib/libc/arm/aeabi/
H A Daeabi_atexit.c36 __aeabi_atexit(void *object, void (*func)(void*), void *dso) argument
38 return __cxa_atexit(func, object, dso);
/freebsd-12-stable/sys/geom/uzip/
H A Dg_uzip.h35 #define DEFINE_RAW_METHOD(func, rval, args...) typedef rval (*func##_t)(args)
/freebsd-12-stable/usr.bin/mkuzip/
H A Dmkuzip.h29 #define DEFINE_RAW_METHOD(func, rval, args...) typedef rval (*func##_t)(args)
/freebsd-12-stable/contrib/libarchive/test_utils/
H A Dtest_utils.h32 void (*func)(void); member in struct:test_list_t
/freebsd-12-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pragma/
H A Derr.D_PRAGMA_UNUSED.UnusedPragma.d37 void func(int, int);
40 #pragma D attributes Stable/Stable/Common func;
/freebsd-12-stable/sys/dev/sound/
H A Dchip.h47 int func; /* The function code. */ member in struct:sndcard_func
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors.h33 #define SCOPED_INTERCEPTOR_RAW(func, ...) \
37 ScopedInterceptor si(thr, #func, caller_pc); \
42 #define SCOPED_TSAN_INTERCEPTOR(func, ...) \
43 SCOPED_INTERCEPTOR_RAW(func, __VA_ARGS__); \
44 if (REAL(func) == 0) { \
45 Report("FATAL: ThreadSanitizer: failed to intercept %s\n", #func); \
49 return REAL(func)(__VA_ARGS__); \
58 #define TSAN_INTERCEPTOR(ret, func, ...) INTERCEPTOR(ret, func, __VA_ARGS__)
61 # define TSAN_INTERCEPTOR_NETBSD_ALIAS(ret, func,
[all...]
/freebsd-12-stable/contrib/netbsd-tests/fs/common/
H A Dh_fsmacros.h106 #define ATF_TC_FSADD(fs,type,func,desc) \
107 ATF_TC(fs##_##func); \
108 ATF_TC_HEAD(fs##_##func,tc) \
114 void *fs##func##tmp; \
116 ATF_TC_BODY(fs##_##func,tc) \
120 FSTEST_CONSTRUCTOR(tc,fs,fs##func##tmp); \
121 func(tc,FSTEST_MNTNAME); \
156 #define ATF_TP_FSADD(fs,func) \
157 ATF_TP_ADD_TC(tp,fs##_##func)
159 #define ATF_TC_FSAPPLY_NOZFS(func,des
[all...]

Completed in 171 milliseconds

1234567891011>>