Home
last modified time | relevance | path

Searched refs:__CONCAT (Results 1 – 25 of 189) sorted by relevance

12345678

/netbsd-src/sys/arch/hppa/hppa/
H A Dfpemu.S43 .import __CONCAT(__CONCAT(ep0,_),name), code ! \
44 .import __CONCAT(__CONCAT(ep1,_),name), code ! \
45 .import __CONCAT(__CONCAT(ep2,_),name), code ! \
46 .import __CONCAT(__CONCAT(ep3,_),name), code ! \
47 .word __CONCAT(__CONCAT(ep
[all...]
/netbsd-src/sys/dev/
H A Dmidivar.h119 u_char *__CONCAT(frk,_cur); \
120 u_char *__CONCAT(frk,_lim); \
121 u_char *__CONCAT(frk,_org); \
122 u_char *__CONCAT(frk,_end)
125 ((__CONCAT(frk,_lim)=(mb)->__CONCAT(frk,_producerp)), \
126 __CONCAT(frk,_lim) < __CONCAT(frk,_cur) ? \
127 (__CONCAT(frk,_lim) += sizeof (mb)->frk) : __CONCAT(frk,_lim))
130 ((__CONCAT(frk,_lim)=(mb)->__CONCAT(frk,_consumerp)-1), \
131 __CONCAT(frk,_lim) < __CONCAT(frk,_cur) ? \
132 (__CONCAT(frk,_lim) += sizeof (mb)->frk) : __CONCAT(frk,_lim))
[all …]
/netbsd-src/lib/librefuse/refuse/
H A Dfs.c69 cloned = malloc(sizeof(struct __CONCAT(fuse_operations_v,VER))); \ in clone_op()
72 memcpy(cloned, op, sizeof(struct __CONCAT(fuse_operations_v,VER))); \ in clone_op()
135 if (((const struct __CONCAT(fuse_operations_v,VER)*)fs->op)->getattr) \ in fuse_fs_getattr_v30()
136 return ((const struct __CONCAT(fuse_operations_v,VER)*)fs->op)->getattr(path, buf); \ in fuse_fs_getattr_v30()
151 if (((const struct __CONCAT(fuse_operations_v,VER)*)fs->op)->getattr) \ in fuse_fs_getattr_v30()
152 … return ((const struct __CONCAT(fuse_operations_v,VER)*)fs->op)->getattr(path, buf, fi); \ in fuse_fs_getattr_v30()
180 if (((const struct __CONCAT(fuse_operations_v,VER)*)fs->op)->fgetattr) \ in fuse_fs_fgetattr()
181 … return ((const struct __CONCAT(fuse_operations_v,VER)*)fs->op)->fgetattr(path, buf, fi); \ in fuse_fs_fgetattr()
182 else if (((const struct __CONCAT(fuse_operations_v,VER)*)fs->op)->getattr) \ in fuse_fs_fgetattr()
183 return ((const struct __CONCAT(fuse_operations_v,VER)*)fs->op)->getattr(path, buf); \ in fuse_fs_fgetattr()
[all …]
/netbsd-src/sys/sys/
H A Dras.h67 extern void __CONCAT(name,_ras_start(void)), __CONCAT(name,_ras_end(void))
88 #define RAS_ADDR(name) ((void *)(uintptr_t) __CONCAT(name,_ras_start))
89 #define RAS_SIZE(name) ((size_t)((uintptr_t) __CONCAT(name,_ras_end) - \
90 (uintptr_t) __CONCAT(name,_ras_start)))
108 .globl _C_LABEL(__CONCAT(name,_ras_start)) _ASM_LS_CHAR \
109 _C_LABEL(__CONCAT(name,_ras_start)):
112 .globl _C_LABEL(__CONCAT(name,_ras_end)) _ASM_LS_CHAR \
113 _C_LABEL(__CONCAT(name,_ras_end)):
122 .globl _C_LABEL(__CONCAT(name,_ras_start)) _ASM_LS_CHAR \
123 .hidden _C_LABEL(__CONCAT(name,_ras_start)) _ASM_LS_CHAR \
[all …]
H A Dmodule.h130 static struct modinfo_chain __CONCAT(mc,name) = { \
131 .mc_info = &__CONCAT(name,_modinfo), \
133 static void __CONCAT(modctor_,name)(void) __attribute__((__constructor__));\
134 static void __CONCAT(modctor_,name)(void) \
138 struct modinfo_chain *mc = &__CONCAT(mc,name); \
143 static void __CONCAT(moddtor_,name)(void) __attribute__((__destructor__));\
144 static void __CONCAT(moddtor_,name)(void) \
146 struct modinfo_chain *mc = &__CONCAT(mc,name); \
154 #define _MODULE_REGISTER(name) __link_set_add_rodata(modules, __CONCAT(name,_modinfo));
159 static int __CONCAT(name,_modcmd)(modcmd_t, void *); \
[all …]
/netbsd-src/sys/lib/libsa/
H A Dstand.h86 extern __compactcall int __CONCAT(fs,_open)(const char *, struct open_file *); \
87 extern __compactcall int __CONCAT(fs,_close)(struct open_file *); \
88 extern __compactcall int __CONCAT(fs,_read)(struct open_file *, void *, \
90 extern __compactcall int __CONCAT(fs,_write)(struct open_file *, void *, \
92 extern __compactcall off_t __CONCAT(fs,_seek)(struct open_file *, off_t, int); \
93 extern __compactcall int __CONCAT(fs,_stat)(struct open_file *, struct stat *)
98 extern __compactcall void __CONCAT(fs,_ls)(struct open_file *, const char *)
128 __CONCAT(fs,_open), \
129 __CONCAT(fs,_close), \
130 __CONCAT(fs,_read), \
[all …]
/netbsd-src/sys/arch/arc/arc/
H A Dbus_space.c55 __CONCAT(bus_space_read_,BYTES)(bus_space_tag_t bst, \
59 (bsh + (offset << __CONCAT(bst->bs_stride_,BYTES)))); \
78 __CONCAT(bus_space_read_multi_,BYTES)(bus_space_tag_t bst, \
84 (bsh + (offset << __CONCAT(bst->bs_stride_,BYTES))); \
107 __CONCAT(bus_space_read_region_,BYTES)(bus_space_tag_t bst, \
111 int stride = 1 << __CONCAT(bst->bs_stride_,BYTES); \
114 (bsh + (offset << __CONCAT(bst->bs_stride_,BYTES))); \
138 __CONCAT(bus_space_write_,BYTES)(bus_space_tag_t bst, \
143 (bsh + (offset << __CONCAT(bst->bs_stride_,BYTES))) = data; \
162 __CONCAT(bus_space_write_multi_,BYTES)(bus_space_tag_t bst, \
[all …]
/netbsd-src/sys/arch/newsmips/include/
H A Dbus.h147 static __inline void __CONCAT(bus_space_read_multi_,BYTES) \
152 __CONCAT(bus_space_read_multi_,BYTES)( \
161 *a++ = __CONCAT(bus_space_read_,BYTES)(t, h, o); \
181 static __inline void __CONCAT(bus_space_read_region_,BYTES) \
186 __CONCAT(bus_space_read_region_,BYTES)( \
195 *a++ = __CONCAT(bus_space_read_,BYTES)(t, h, o); \
243 static __inline void __CONCAT(bus_space_write_multi_,BYTES) \
248 __CONCAT(bus_space_write_multi_,BYTES)( \
257 __CONCAT(bus_space_write_,BYTES)(t, h, o, *a++); \
276 static __inline void __CONCAT(bus_space_write_region_,BYTES) \
[all …]
/netbsd-src/sys/arch/emips/include/
H A Dbus.h156 static __inline void __CONCAT(bus_space_read_multi_,BYTES) \
161 __CONCAT(bus_space_read_multi_,BYTES)( \
170 *a++ = __CONCAT(bus_space_read_,BYTES)(t, h, o); \
190 static __inline void __CONCAT(bus_space_read_region_,BYTES) \
195 __CONCAT(bus_space_read_region_,BYTES)( \
204 *a++ = __CONCAT(bus_space_read_,BYTES)(t, h, o); \
255 static __inline void __CONCAT(bus_space_write_multi_,BYTES) \
260 __CONCAT(bus_space_write_multi_,BYTES)( \
269 __CONCAT(bus_space_write_,BYTES)(t, h, o, *a++); \
288 static __inline void __CONCAT(bus_space_write_region_,BYTES) \
[all …]
/netbsd-src/sys/arch/emips/ebus/
H A Dps2_ebus.c42 #define stub_ebus_match __CONCAT(pstwo,_ebus_match)
43 #define stub_ebus_attach __CONCAT(pstwo,_ebus_attach)
44 #define stub_ebus __CONCAT(pstwo,_ebus)
45 #define stub_softc __CONCAT(pstwo,_softc)
46 #define stubopen __CONCAT(pstwo,open)
47 #define stubclose __CONCAT(pstwo,close)
48 #define stub_cdevsw __CONCAT(pstwo,_cdevsw)
H A Dac97_ebus.c42 #define stub_ebus_match __CONCAT(acns,_ebus_match)
43 #define stub_ebus_attach __CONCAT(acns,_ebus_attach)
44 #define stub_ebus __CONCAT(acns,_ebus)
45 #define stub_softc __CONCAT(acns,_softc)
46 #define stubopen __CONCAT(acns,open)
47 #define stubclose __CONCAT(acns,close)
48 #define stub_cdevsw __CONCAT(acns,_cdevsw)
H A Dlcd_ebus.c42 #define stub_ebus_match __CONCAT(lcd,_ebus_match)
43 #define stub_ebus_attach __CONCAT(lcd,_ebus_attach)
44 #define stub_ebus __CONCAT(lcd,_ebus)
45 #define stub_softc __CONCAT(lcd,_softc)
46 #define stubopen __CONCAT(lcd,open)
47 #define stubclose __CONCAT(lcd,close)
48 #define stub_cdevsw __CONCAT(lcd,_cdevsw)
H A Devga_ebus.c42 #define stub_ebus_match __CONCAT(evga,_ebus_match)
43 #define stub_ebus_attach __CONCAT(evga,_ebus_attach)
44 #define stub_ebus __CONCAT(evga,_ebus)
45 #define stub_softc __CONCAT(evga,_softc)
46 #define stubopen __CONCAT(evga,open)
47 #define stubclose __CONCAT(evga,close)
48 #define stub_cdevsw __CONCAT(evga,_cdevsw)
/netbsd-src/sys/dev/arcbios/
H A Darcbios_calls.S119 .globl __CONCAT(arcbios_,name); \
120 LEAF(__CONCAT(arcbios_,name)); \
123 INT_L t9, __CONCAT(AFV_,name)(t9); \
127 END(__CONCAT(arcbios_,name))
134 .globl __CONCAT(arcbios_,name); \
135 NESTED(__CONCAT(arcbios_,name), 0, ra); \
137 li t0, __CONCAT(AFV_,name); \
138 END(__CONCAT(arcbios_,name))
141 .globl __CONCAT(arcbios_,name); \
142 NESTED(__CONCAT(arcbios_,name), 0, ra); \
[all …]
/netbsd-src/sys/arch/mips/alchemy/
H A Dau_wired_space.c444 __CONCAT(au_wired_rm_,BYTES)(void *v, \
449 *dst ++ = __CONCAT(au_wired_r_,BYTES)(v, h, o); \
458 __CONCAT(au_wired_rms_,BYTES)(void *v, \
464 *dst++ = __CONCAT(au_wired_rs_,BYTES)(v, h, o); \
473 __CONCAT(au_wired_rr_,BYTES)(void *v, \
478 *dst++ = __CONCAT(au_wired_r_,BYTES)(v, h, o); \
489 __CONCAT(au_wired_rrs_,BYTES)(void *v, \
494 *dst++ = __CONCAT(au_wired_rs_,BYTES)(v, h, o); \
504 __CONCAT(au_wired_wm_,BYTES)(void *v, \
510 __CONCAT(au_wired_w_,BYTES)(v, h, o, *src++); \
[all …]
H A Dau_himem_space.c508 __CONCAT(au_himem_rm_,BYTES)(void *v, \
513 *dst ++ = __CONCAT(au_himem_r_,BYTES)(v, h, o); \
522 __CONCAT(au_himem_rms_,BYTES)(void *v, \
527 *dst++ = __CONCAT(au_himem_rs_,BYTES)(v, h, o); \
536 __CONCAT(au_himem_rr_,BYTES)(void *v, \
541 *dst++ = __CONCAT(au_himem_r_,BYTES)(v, h, o); \
552 __CONCAT(au_himem_rrs_,BYTES)(void *v, \
557 *dst++ = __CONCAT(au_himem_rs_,BYTES)(v, h, o); \
567 __CONCAT(au_himem_wm_,BYTES)(void *v, \
573 __CONCAT(au_himem_w_,BYTES)(v, h, o, *src++); \
[all …]
/netbsd-src/sys/rump/dev/lib/
H A Dcomponent_simple.c41 __CONCAT(cfdriver_ioconf_,a), \
42 __CONCAT(cfattach_ioconf_,a), \
43 __CONCAT(cfdata_ioconf_,a));
/netbsd-src/sys/arch/riscv/riscv/
H A Dsig32_machdep.c6 #define COMPATNAME1(x) __CONCAT(netbsd32_,x)
7 #define COMPATNAME2(x) __CONCAT(x,32)
8 #define COMPATTYPE(x) __CONCAT(x,32_t)
/netbsd-src/sys/arch/next68k/include/
H A Dbus_space.h469 static __inline void __CONCAT(bus_space_copy_region_,BYTES) \
476 __CONCAT(bus_space_copy_region_,BYTES)( \
489 __CONCAT(bus_space_write_,BYTES)(t, h2, o2 + o, \
490 __CONCAT(bus_space_read_,BYTES)(t, h1, o1 + o)); \
494 __CONCAT(bus_space_write_,BYTES)(t, h2, o2 + o, \
495 __CONCAT(bus_space_read_,BYTES)(t, h1, o1 + o)); \
/netbsd-src/external/bsd/pcc/dist/pcc/cc/cpp/tests/
H A Dtest101 #define __CONCAT(x,y) x ## y
3 #define dev_decl(n,t) __CONCAT(dev_type_,t)(__CONCAT(n,t))
/netbsd-src/sys/arch/news68k/include/
H A Dbus.h512 static __inline void __CONCAT(bus_space_copy_region_,BYTES) \
519 __CONCAT(bus_space_copy_region_,BYTES)(bus_space_tag_t t, \
528 __CONCAT(bus_space_write_,BYTES)(t, h2, o2 + o, \
529 __CONCAT(bus_space_read_,BYTES)(t, h1, o1 + o)); \
533 __CONCAT(bus_space_write_,BYTES)(t, h2, o2 + o, \
534 __CONCAT(bus_space_read_,BYTES)(t, h1, o1 + o)); \
/netbsd-src/sys/arch/luna68k/include/
H A Dbus.h508 static __inline void __CONCAT(bus_space_copy_region_,BYTES) \
515 __CONCAT(bus_space_copy_region_,BYTES)( \
528 __CONCAT(bus_space_write_,BYTES)(t, h2, o2 + o, \
529 __CONCAT(bus_space_read_,BYTES)(t, h1, o1 + o)); \
533 __CONCAT(bus_space_write_,BYTES)(t, h2, o2 + o, \
534 __CONCAT(bus_space_read_,BYTES)(t, h1, o1 + o)); \
/netbsd-src/sys/compat/netbsd32/
H A Dnetbsd32_sysent.c29 #define compat_43(func) __CONCAT(compat_43_,func)
35 #define compat_09(func) __CONCAT(compat_09_,func)
41 #define compat_10(func) __CONCAT(compat_10_,func)
47 #define compat_11(func) __CONCAT(compat_11_,func)
53 #define compat_12(func) __CONCAT(compat_12_,func)
59 #define compat_13(func) __CONCAT(compat_13_,func)
65 #define compat_14(func) __CONCAT(compat_14_,func)
71 #define compat_15(func) __CONCAT(compat_15_,func)
77 #define compat_16(func) __CONCAT(compat_16_,func)
83 #define compat_20(func) __CONCAT(compat_20_,func)
[all …]
/netbsd-src/sys/arch/mvme68k/include/
H A Dbus_space.h548 static __inline void __CONCAT(bus_space_copy_region_,BYTES) \
555 __CONCAT(bus_space_copy_region_,BYTES)( \
568 __CONCAT(bus_space_write_,BYTES)(t, h2, o2 + o, \
569 __CONCAT(bus_space_read_,BYTES)(t, h1, o1 + o)); \
573 __CONCAT(bus_space_write_,BYTES)(t, h2, o2 + o, \
574 __CONCAT(bus_space_read_,BYTES)(t, h1, o1 + o)); \
/netbsd-src/sys/arch/evbcf/include/
H A Dbus_space.h545 static __inline void __CONCAT(bus_space_copy_region_,BYTES) \
552 __CONCAT(bus_space_copy_region_,BYTES)( \
565 __CONCAT(bus_space_write_,BYTES)(t, h2, o2 + o, \
566 __CONCAT(bus_space_read_,BYTES)(t, h1, o1 + o)); \
570 __CONCAT(bus_space_write_,BYTES)(t, h2, o2 + o, \
571 __CONCAT(bus_space_read_,BYTES)(t, h1, o1 + o)); \

12345678