/src/tests/usr.bin/indent/ |
psym_semicolon.c | 11 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
|
lsym_funcname.c | 15 func(); 16 (func)(); 17 func(1, 2, 3);
|
/src/tests/usr.bin/xlint/lint1/ |
msg_311.c | 13 int (*func)(void) __symbolrename(function); local in function:example 15 func = (void *)0; 16 return func;
|
msg_088.c | 11 func(void) function in typeref:typename:void
|
d_decl_old_style_arguments.c | 10 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/ |
instrprof-dlopen-func.c | 1 void func(int K) { if (K) {} } function in typeref:typename:void
|
/src/sys/external/bsd/common/include/linux/ |
frame.h | 32 #define STACK_FRAME_NON_STANDARD(func) /* nothing */
|
/src/sys/external/bsd/compiler_rt/dist/lib/interception/ |
interception_mac.h | 24 #define INTERCEPT_FUNCTION_MAC(func) 25 #define INTERCEPT_FUNCTION_VER_MAC(func, symver)
|
interception_linux.h | 32 #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, symver) [all...] |
interception.h | 124 # 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...] |
interception_win.h | 65 #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/ |
tsan_interceptors.h | 26 #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/ |
apple.h | 11 #define APPLE_PINMUX(pin, func) ((pin) | ((func) << 16))
|
/src/sys/external/bsd/drm2/dist/drm/i915/ |
intel_device_info.h | 108 #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_mocs); [all...] |
/src/sys/external/bsd/compiler_rt/dist/test/profile/Linux/ |
coverage_test.cpp | 17 void func() { // CHECK: 0| [[@LINE]]|void func( function in typeref:typename:void
|
/src/lib/libc/sys/ |
Lint___clone.c | 12 __clone(int (*func)(void *), void *stack, int flags, void *arg)
|
/src/tests/fs/common/ |
h_fsmacros.h | 110 #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,desc) ATF_TC_FSADD(zfs,MOUNT_ZFS,func,desc [all...] |
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/bar/ |
nouveau_nvkm_subdev_bar_base.c | 34 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->bar2.init) [all...] |
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/mspdec/ |
nouveau_nvkm_engine_mspdec_base.c | 32 nvkm_mspdec_new_(const struct nvkm_falcon_func *func, 36 return nvkm_falcon_new_(func, device, index, true, 0x085000, pengine);
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/msppp/ |
nouveau_nvkm_engine_msppp_base.c | 32 nvkm_msppp_new_(const struct nvkm_falcon_func *func, struct nvkm_device *device, 35 return nvkm_falcon_new_(func, device, index, true, 0x086000, pengine);
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/msvld/ |
nouveau_nvkm_engine_msvld_base.c | 32 nvkm_msvld_new_(const struct nvkm_falcon_func *func, struct nvkm_device *device, 35 return nvkm_falcon_new_(func, device, index, true, 0x084000, pengine);
|
/src/sys/arch/luna68k/luna68k/ |
isr.h | 48 isrlink_autovec(int (*func)(void *), void *arg, int ipl, int isrpri) 51 m68k_intr_establish(func, arg, NULL, 0, ipl, isrpri, 0);
|
/src/sys/arch/cesfic/cesfic/ |
isr.h | 48 isrlink(int (*func)(void *), void *arg, int ipl, int isrpri) 50 return m68k_intr_establish(func, arg, NULL, 0, ipl, isrpri, 0);
|
/src/tests/usr.bin/xlint/lint2/ |
msg_008.exp | 0 func returns a value that is always ignored [lint2:008]
|
msg_009.exp | 0 func returns a value that is sometimes ignored [lint2:009]
|