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

1234567891011>>

/src/tests/usr.bin/indent/
H A Dpsym_semicolon.c11 void func(void) { stmt(); } function in typeref:typename:void
16 func(void) function in typeref:typename:void
23 void func(void) function in typeref:typename:void
31 func(void) { function in typeref:typename:void
H A Dlsym_funcname.c15 func();
16 (func)();
17 func(1, 2, 3);
/src/tests/usr.bin/xlint/lint1/
H A Dmsg_311.c13 int (*func)(void) __symbolrename(function); local in function:example
15 func = (void *)0;
16 return func;
H A Dmsg_088.c11 func(void) function in typeref:typename:void
H A Dd_decl_old_style_arguments.c10 void func(int a, int b, int c);
12 /* expect+5: warning: function definition for 'func' with identifier list is obsolete in C23 [384] */
13 /* expect+4: warning: parameter 'num' unused in function 'func' [231] */
14 /* expect+3: warning: parameter 'ptr' unused in function 'func' [231] */
15 /* expect+2: warning: parameter 'dbl' unused in function 'func' [231] */
16 /* expect+1: warning: parameter 'def' unused in function 'func' [231] */
17 void func(num, ptr, dbl, def) function
/src/sys/external/bsd/compiler_rt/dist/test/profile/Inputs/
H A Dinstrprof-dlopen-func.c1 void func(int K) { if (K) {} } function in typeref:typename:void
/src/sys/external/bsd/common/include/linux/
H A Dframe.h32 #define STACK_FRAME_NON_STANDARD(func) /* nothing */
/src/sys/external/bsd/compiler_rt/dist/lib/interception/
H A Dinterception_mac.h24 #define INTERCEPT_FUNCTION_MAC(func)
25 #define INTERCEPT_FUNCTION_VER_MAC(func, symver)
H A Dinterception_linux.h32 #define INTERCEPT_FUNCTION_LINUX_OR_FREEBSD(func) \
34 #func, (::__interception::uptr *)&__interception::PTR_TO_REAL(func), \
35 (::__interception::uptr) & (func), \
36 (::__interception::uptr) & WRAP(func))
40 #define INTERCEPT_FUNCTION_VER_LINUX_OR_FREEBSD(func, symver) \
41 (::__interception::real_##func = (func##_type)( \
42 unsigned long)::__interception::GetFuncAddrVer(#func, symver))
44 #define INTERCEPT_FUNCTION_VER_LINUX_OR_FREEBSD(func, symve
[all...]
H A Dinterception.h124 # define DECLARE_WRAPPER(ret_type, func, ...)
130 # define DECLARE_WRAPPER(ret_type, func, ...) \
131 extern "C" ret_type func(__VA_ARGS__);
132 # define DECLARE_WRAPPER_WINAPI(ret_type, func, ...) \
133 extern "C" __declspec(dllimport) ret_type __stdcall func(__VA_ARGS__);
138 # define DECLARE_WRAPPER(ret_type, func, ...)
146 # define DECLARE_WRAPPER(ret_type, func, ...) \
147 extern "C" ret_type func(__VA_ARGS__) \
148 __attribute__((alias("__interceptor_" #func), visibility("default")));
153 # define DECLARE_WRAPPER(ret_type, func,
[all...]
H A Dinterception_win.h65 #define INTERCEPT_FUNCTION_WIN(func) \
66 ::__interception::OverrideFunction(#func, \
67 (::__interception::uptr)WRAP(func), \
68 (::__interception::uptr *)&REAL(func))
70 #define INTERCEPT_FUNCTION_WIN(func) \
71 ::__interception::OverrideFunction((::__interception::uptr)func, \
72 (::__interception::uptr)WRAP(func), \
73 (::__interception::uptr *)&REAL(func))
76 #define INTERCEPT_FUNCTION_VER_WIN(func, symver) INTERCEPT_FUNCTION_WIN(func)
[all...]
/src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
H A Dtsan_interceptors.h26 #define SCOPED_INTERCEPTOR_RAW(func, ...) \
29 ScopedInterceptor si(thr, #func, caller_pc); \
34 #define SCOPED_TSAN_INTERCEPTOR(func, ...) \
35 SCOPED_INTERCEPTOR_RAW(func, __VA_ARGS__); \
36 if (REAL(func) == 0) { \
37 Report("FATAL: ThreadSanitizer: failed to intercept %s\n", #func); \
41 return REAL(func)(__VA_ARGS__); \
50 #define TSAN_INTERCEPTOR(ret, func, ...) INTERCEPTOR(ret, func, __VA_ARGS__)
53 # define TSAN_INTERCEPTOR_NETBSD_ALIAS(ret, func,
[all...]
/src/sys/external/gpl2/dts/dist/include/dt-bindings/pinctrl/
H A Dapple.h11 #define APPLE_PINMUX(pin, func) ((pin) | ((func) << 16))
/src/sys/external/bsd/drm2/dist/drm/i915/
H A Dintel_device_info.h108 #define DEV_INFO_FOR_EACH_FLAG(func) \
109 func(is_mobile); \
110 func(is_lp); \
111 func(require_force_probe); \
112 func(is_dgfx); \
114 func(has_64bit_reloc); \
115 func(gpu_reset_clobbers_display); \
116 func(has_reset_engine); \
117 func(has_fpga_dbg); \
118 func(has_global_moc
[all...]
/src/lib/libc/sys/
H A DLint___clone.c12 __clone(int (*func)(void *), void *stack, int flags, void *arg)
/src/sys/external/bsd/compiler_rt/dist/test/profile/Linux/
H A Dcoverage_test.cpp17 void func() { // CHECK: 0| [[@LINE]]|void func( function in typeref:typename:void
/src/tests/fs/common/
H A Dh_fsmacros.h110 #define ATF_TC_FSADD(fs,type,func,desc) \
111 ATF_TC(fs##_##func); \
112 ATF_TC_HEAD(fs##_##func,tc) \
118 void *fs##func##tmp; \
120 ATF_TC_BODY(fs##_##func,tc) \
124 FSTEST_CONSTRUCTOR(tc,fs,fs##func##tmp); \
125 func(tc,FSTEST_MNTNAME); \
160 #define ATF_TP_FSADD(fs,func) \
161 ATF_TP_ADD_TC(tp,fs##_##func)
164 # define ATF_TC_FSADD_ZFS(func,des
[all...]
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/bar/
H A Dnouveau_nvkm_subdev_bar_base.c34 if (bar && bar->func->flush)
35 bar->func->flush(bar);
41 return device->bar->func->bar1.vmm(device->bar);
49 bar->func->bar1.init(bar);
50 bar->func->bar1.wait(bar);
62 return bar->func->bar2.vmm(bar);
71 bar->func->bar2.init(bar);
72 bar->func->bar2.wait(bar);
81 bar->func->bar2.fini(bar);
90 if (bar && bar->subdev.oneinit && !bar->bar2 && bar->func
142 nvkm_bar_ctor(const struct nvkm_bar_func * func,struct nvkm_device * device,int index,struct nvkm_bar * bar) argument
[all...]
/src/sys/arch/cesfic/cesfic/
H A Disr.h48 isrlink(int (*func)(void *), void *arg, int ipl, int isrpri)
50 return m68k_intr_establish(func, arg, NULL, 0, ipl, isrpri, 0);
/src/sys/arch/luna68k/luna68k/
H A Disr.h48 isrlink_autovec(int (*func)(void *), void *arg, int ipl, int isrpri)
51 m68k_intr_establish(func, arg, NULL, 0, ipl, isrpri, 0);
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/mspdec/
H A Dnouveau_nvkm_engine_mspdec_base.c32 nvkm_mspdec_new_(const struct nvkm_falcon_func *func, argument
36 return nvkm_falcon_new_(func, device, index, true, 0x085000, pengine);
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/msppp/
H A Dnouveau_nvkm_engine_msppp_base.c32 nvkm_msppp_new_(const struct nvkm_falcon_func *func, struct nvkm_device *device, argument
35 return nvkm_falcon_new_(func, device, index, true, 0x086000, pengine);
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/msvld/
H A Dnouveau_nvkm_engine_msvld_base.c32 nvkm_msvld_new_(const struct nvkm_falcon_func *func, struct nvkm_device *device, argument
35 return nvkm_falcon_new_(func, device, index, true, 0x084000, pengine);
/src/tests/usr.bin/xlint/lint2/
H A Dmsg_008.exp0 func returns a value that is always ignored [lint2:008]
H A Dmsg_009.exp0 func returns a value that is sometimes ignored [lint2:009]

Completed in 8 milliseconds

1234567891011>>