Home
last modified time | relevance | path

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

123

/freebsd-13.1/sys/sys/
H A Dkernel.h326 SYSINIT(__CONCAT(__Tunable_init_, __LINE__), \
328 &__CONCAT(__tunable_int_, __LINE__))
345 SYSINIT(__CONCAT(__Tunable_init_, __LINE__), \
347 &__CONCAT(__tunable_long_, __LINE__))
364 SYSINIT(__CONCAT(__Tunable_init_, __LINE__), \
366 &__CONCAT(__tunable_ulong_, __LINE__))
385 &__CONCAT(__tunable_int64_, __LINE__))
404 &__CONCAT(__tunable_uint64_, __LINE__))
423 &__CONCAT(__tunable_quad_, __LINE__))
442 &__CONCAT(__tunable_bool_, __LINE__))
[all …]
H A Delf_generic.h45 #define ELF_CLASS __CONCAT(ELFCLASS,__ELF_WORD_SIZE)
55 #define __elfN(x) __CONCAT(__CONCAT(__CONCAT(elf,__ELF_WORD_SIZE),_),x)
56 #define __ElfN(x) __CONCAT(__CONCAT(__CONCAT(Elf,__ELF_WORD_SIZE),_),x)
57 #define __ELFN(x) __CONCAT(__CONCAT(__CONCAT(ELF,__ELF_WORD_SIZE),_),x)
58 #define __ElfType(x) typedef __ElfN(x) __CONCAT(Elf_,x)
H A Dlinker_set.h74 __WEAK(__CONCAT(__start_set_,set)); \
75 __WEAK(__CONCAT(__stop_set_,set)); \
99 extern ptype __weak_symbol *__CONCAT(__start_set_,set); \
100 extern ptype __weak_symbol *__CONCAT(__stop_set_,set)
103 (&__CONCAT(__start_set_,set))
105 (&__CONCAT(__stop_set_,set))
H A Dexec.h101 static int __CONCAT(name,_modevent)(module_t mod, int type, \
125 static moduledata_t __CONCAT(name,_mod) = { \
127 __CONCAT(name,_modevent), \
130 DECLARE_MODULE_TIED(name, __CONCAT(name,_mod), SI_SUB_EXEC, \
H A Dlock.h289 const char * __CONCAT(n, __wf); \
290 int __CONCAT(n, __wl)
293 witness_save((lock), &__CONCAT(n, __wf), &__CONCAT(n, __wl))
296 witness_restore((lock), __CONCAT(n, __wf), __CONCAT(n, __wl))
/freebsd-13.1/lib/libc/mips/
H A DSYS.h107 _C_LABEL(x) = _C_LABEL(__CONCAT(__sys_,x)); \
108 .weak _C_LABEL(__CONCAT(_,x)); \
109 _C_LABEL(__CONCAT(_,x)) = _C_LABEL(__CONCAT(__sys_,x)); \
120 _C_LABEL(x) = _C_LABEL(__CONCAT(__sys_,x)); \
121 .weak _C_LABEL(__CONCAT(_,x)); \
122 _C_LABEL(__CONCAT(_,x)) = _C_LABEL(__CONCAT(__sys_,x)); \
137 .weak _C_LABEL(__CONCAT(_,x)); \
138 _C_LABEL(__CONCAT(_,x)) = _C_LABEL(__CONCAT(__sys_,x)); \
145 .weak _C_LABEL(__CONCAT(_,x)); \
146 _C_LABEL(__CONCAT(_,x)) = _C_LABEL(__CONCAT(__sys_,x)); \
/freebsd-13.1/lib/libc/arm/
H A DSYS.h54 ENTRY(__CONCAT(__sys_, x)); \
56 .set _C_LABEL(x), _C_LABEL(__CONCAT(__sys_,x)); \
57 .weak _C_LABEL(__CONCAT(_,x)); \
58 .set _C_LABEL(__CONCAT(_,x)),_C_LABEL(__CONCAT(__sys_,x)); \
70 ENTRY(__CONCAT(__sys_, x)); \
71 .weak _C_LABEL(__CONCAT(_,x)); \
72 .set _C_LABEL(__CONCAT(_,x)),_C_LABEL(__CONCAT(__sys_,x)); \
/freebsd-13.1/sys/tools/
H A Dvdso_wrap.S33 #define VDSO_BLOB_START(S) __CONCAT(_binary_, __CONCAT(S, _start))
34 #define VDSO_BLOB_END(S) __CONCAT(_binary_, __CONCAT(S, _end))
35 #define VDSO_BLOB_SIZE(S) __CONCAT(_binary_, __CONCAT(S, _size))
/freebsd-13.1/sys/ddb/
H A Dddb.h131 static struct command __CONCAT(_name,_suffix) = { \
137 static void __CONCAT(__CONCAT(_name,_suffix),_add)(void *arg __unused) \
138 { db_command_register(&list, &__CONCAT(_name,_suffix)); } \
139 SYSINIT(__CONCAT(_name,_suffix), SI_SUB_KLD, SI_ORDER_ANY, \
140 __CONCAT(__CONCAT(_name,_suffix),_add), NULL); \
141 static void __CONCAT(__CONCAT(_name,_suffix),_del)(void *arg __unused) \
142 { db_command_unregister(&list, &__CONCAT(_name,_suffix)); } \
143 SYSUNINIT(__CONCAT(_name,_suffix), SI_SUB_KLD, SI_ORDER_ANY, \
144 __CONCAT(__CONCAT(_name,_suffix),_del), NULL);
/freebsd-13.1/lib/csu/powerpc/
H A Dcrtsavres.S49 #define SAVEFPR(r) _CRTENTRY(__CONCAT(_savefpr_,r)) \
72 #define RESTFPR(r) _CRTENTRY(__CONCAT(_restfpr_,r)) \
95 #define SAVEGPR(r) _CRTENTRY(__CONCAT(_savegpr_,r)) \
118 #define RESTGPR(r) _CRTENTRY(__CONCAT(_restgpr_,r)) \
141 #define RESTFPR_X(r) _CRTENTRY(__CONCAT(__CONCAT(_restfpr_,r),_x)) \
167 #define RESTGPR_X(r) _CRTENTRY(__CONCAT(__CONCAT(_restgpr_,r),_x)) \
/freebsd-13.1/sys/kern/
H A Dfirmw.S37 #define FIRMW_START(S) __CONCAT(_binary_, __CONCAT(S, _start))
38 #define FIRMW_END(S) __CONCAT(_binary_, __CONCAT(S, _end))
/freebsd-13.1/usr.sbin/bhyve/
H A Dpci_lpc.h43 static struct lpc_dsdt __CONCAT(__lpc_dsdt, __LINE__) = { \
46 DATA_SET(lpc_dsdt_set, __CONCAT(__lpc_dsdt, __LINE__))
60 static struct lpc_sysres __CONCAT(__lpc_sysres, __LINE__) = { \
65 DATA_SET(lpc_sysres_set, __CONCAT(__lpc_sysres, __LINE__))
H A Dfwctl.h47 static struct ctl __CONCAT(__ctl, __LINE__) = { \
52 DATA_SET(ctl_set, __CONCAT(__ctl, __LINE__))
/freebsd-13.1/lib/libthr/arch/i386/i386/
H A D_umtx_op_err.S33 ENTRY(__CONCAT(x, _err)); \
34 mov __CONCAT($SYS_,x),%eax; \
37 END(__CONCAT(x, _err))
/freebsd-13.1/lib/libthr/arch/amd64/amd64/
H A D_umtx_op_err.S32 #define RSYSCALL_ERR(x) ENTRY(__CONCAT(x, _err)); \
33 mov __CONCAT($SYS_,x),%rax; \
36 END(__CONCAT(x, _err));
/freebsd-13.1/tests/sys/opencrypto/
H A Dcryptodevh.py87 def __FBSDID(s): return __IDSTRING(__CONCAT(__rcsid_,__LINE__),s)
89 def __RCSID(s): return __IDSTRING(__CONCAT(__rcsid_,__LINE__),s)
91 def __RCSID_SOURCE(s): return __IDSTRING(__CONCAT(__rcsid_source_,__LINE__),s)
93 def __SCCSID(s): return __IDSTRING(__CONCAT(__sccsid_,__LINE__),s)
95 def __COPYRIGHT(s): return __IDSTRING(__CONCAT(__copyright_,__LINE__),s)
/freebsd-13.1/sys/i386/include/
H A Dasmacros.h107 jfalse 8f; MEXITCOUNT; jmp __CONCAT(to,label); 8:
109 ALIGN_TEXT; __CONCAT(to,label): ; MCOUNT; jmp label
146 #define IDTVEC(name) ALIGN_TEXT; .globl __CONCAT(X,name); \
147 .type __CONCAT(X,name),@function; __CONCAT(X,name):
/freebsd-13.1/sys/net/altq/
H A Daltq_hfsc.h307 #define service_curve __CONCAT(service_curve_v, HFSC_SERVICE_CURVE_VERSION)
318 #define hfsc_classstats __CONCAT(hfsc_classstats_v, HFSC_STATS_VERSION)
319 #define service_curve __CONCAT(service_curve_v, HFSC_SERVICE_CURVE_VERSION)
327 #define hfsc_classstats __CONCAT(hfsc_classstats_v, 0)
328 #define service_curve __CONCAT(service_curve_v, 0)
/freebsd-13.1/contrib/bmake/missing/sys/
H A Dcdefs.h100 #ifndef __CONCAT
101 #define __CONCAT(x,y) x ## y macro
118 #define __CONCAT(x,y) x/**/y macro
/freebsd-13.1/sys/i386/i386/
H A Dpmap.c440 __CONCAT(PMTYPE, cold)(void) in __CONCAT() function
584 __CONCAT(PMTYPE, remap_lower)(false); in __CONCAT()
599 __CONCAT(PMTYPE, set_nx)(void) in __CONCAT() function
797 __CONCAT(PMTYPE, init_pat)(void) in __CONCAT() function
970 __CONCAT(PMTYPE, init)(void) in __CONCAT() function
2038 __CONCAT(PMTYPE, pinit0)(pmap_t pmap) in __CONCAT() function
2058 __CONCAT(PMTYPE, pinit)(pmap_t pmap) in __CONCAT() function
5970 __CONCAT(PMTYPE, get_map_low)(void) in __CONCAT() function
6037 __CONCAT(PMTYPE, get_kcr3)(void) in __CONCAT() function
6093 __CONCAT(PMTYPE, bios16_enter)(void) in __CONCAT() function
[all …]
/freebsd-13.1/sys/powerpc/include/
H A Dasm.h61 #define HIDENAME(asmsym) __CONCAT(_,asmsym)
63 #define HIDENAME(asmsym) __CONCAT(.,asmsym)
69 #define DOT_LABEL(name) __CONCAT(.,name)
76 #define DOT_LABEL(name) __CONCAT(.L.,name)
94 #define TOC_NAME_FOR_REF(name) __CONCAT(.L,name)
/freebsd-13.1/sys/dev/virtio/
H A Dvirtio.h132 __CONCAT(virtio_read_dev_config_,size)(device_t dev, \
141 __CONCAT(virtio_write_dev_config_,size)(device_t dev, \
155 __CONCAT(virtio_get_,name)(device_t dev) \
173 __CONCAT(virtio_set_,name)(device_t dev, void *val) \
/freebsd-13.1/usr.sbin/mfiutil/
H A Dmfiutil.h60 extern ptype *__CONCAT(__start_set_,set); \
61 extern ptype *__CONCAT(__stop_set_,set)
64 (&__CONCAT(__start_set_,set))
66 (&__CONCAT(__stop_set_,set))
/freebsd-13.1/lib/libc/gen/
H A D_pthread_stubs.c143 #define FUNC_TYPE(name) __CONCAT(name, _func_t)
144 #define FUNC_INT(name) __CONCAT(name, _int)
145 #define FUNC_EXP(name) __CONCAT(name, _exp)
151 WEAK_REF(FUNC_INT(name), __CONCAT(_, name)); \
170 WEAK_REF(FUNC_INT(name), __CONCAT(_, name)); \
189 WEAK_REF(FUNC_INT(name), __CONCAT(_, name)); \
208 WEAK_REF(FUNC_INT(name), __CONCAT(_, name)); \
/freebsd-13.1/sys/cddl/compat/opensolaris/sys/
H A Delf.h32 #define __sElfN(x) typedef __CONCAT(__CONCAT(__CONCAT(Elf,__ELF_WORD_SIZE),_),x) x

123