Lines Matching full:alias
33 #define SYSCALL_ALIAS(alias, name) asm( \ argument
34 ".globl " __stringify(alias) "\n\t" \
35 ".set " __stringify(alias) "," \
170 #define SYM_ALIAS(alias, name, linkage) \
171 linkage(alias) ASM_NL \
172 .set alias, name ASM_NL
190 * ALIAS -- does not generate debug info -- the aliased function will
253 * SYM_FUNC_ALIAS -- define a global alias for an existing function
256 #define SYM_FUNC_ALIAS(alias, name) \
257 SYM_ALIAS(alias, name, SYM_L_GLOBAL)
261 * SYM_FUNC_ALIAS_LOCAL -- define a local alias for an existing function
264 #define SYM_FUNC_ALIAS_LOCAL(alias, name) \
265 SYM_ALIAS(alias, name, SYM_L_LOCAL)
269 * SYM_FUNC_ALIAS_WEAK -- define a weak global alias for an existing function
272 #define SYM_FUNC_ALIAS_WEAK(alias, name) \
273 SYM_ALIAS(alias, name, SYM_L_WEAK)