Searched defs:__CONCAT (Results 1 - 4 of 4) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/Arm/machine/
H A Dasm.h52 # define __CONCAT(x,y) x ## y macro
55 # define __CONCAT(x,y) x/**/y macro
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/X64/machine/
H A Dasm.h54 # define __CONCAT(x,y) x ## y macro
57 # define __CONCAT(x,y) x/**/y macro
70 /* XXX Can't use __CONCAT() here, as it would be evaluated incorrectly. */
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/Ia32/machine/
H A Dasm.h78 # define __CONCAT(x,y) x ## y macro
81 # define __CONCAT(x,y) x/**/y macro
100 #define CPUVAR(off) %fs:__CONCAT(CPU_INFO_,off)
102 #define CPUVAR(off) _C_LABEL(cpu_info_primary)+__CONCAT(CPU_INFO_,off)
105 /* XXX Can't use __CONCAT() here, as it would be evaluated incorrectly. */
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/sys/
H A DEfiCdefs.h129 * The __CONCAT macro is used to concatenate parts of symbol names, e.g.
130 * with "#define OLD(foo) __CONCAT(old,foo)", OLD(foo) produces oldfoo.
131 * The __CONCAT macro is a bit tricky -- make sure you don't put spaces
132 * in between its arguments. __CONCAT can also concatenate double-quoted
137 #define ___CONCAT(x,y) __CONCAT(x,y)
138 #define __CONCAT(x,y) x ## y macro

Completed in 78 milliseconds