Lines Matching defs:sym
532 #define __strong_reference(sym,aliassym) \
533 extern __typeof (sym) aliassym __attribute__ ((__alias__ (#sym)))
535 #define __weak_reference(sym,alias) \
537 __asm__(".equ " #alias ", " #sym)
538 #define __warn_references(sym,msg) \
539 __asm__(".section .gnu.warning." #sym); \
542 #define __sym_compat(sym,impl,verid) \
543 __asm__(".symver " #impl ", " #sym "@" #verid)
544 #define __sym_default(sym,impl,verid) \
545 __asm__(".symver " #impl ", " #sym "@@@" #verid)
547 #define __weak_reference(sym,alias) \
549 __asm__(".equ alias, sym")
550 #define __warn_references(sym,msg) \
551 __asm__(".section .gnu.warning.sym"); \
554 #define __sym_compat(sym,impl,verid) \
555 __asm__(".symver impl, sym@verid")
556 #define __sym_default(impl,sym,verid) \
557 __asm__(".symver impl, sym@@@verid")
561 #define __GLOBL(sym) __asm__(".globl " __XSTRING(sym))
562 #define __WEAK(sym) __asm__(".weak " __XSTRING(sym))