Lines Matching refs:__attribute__
29 #define PA_GCC_PRINTF_ATTR(a,b) __attribute__ ((format (__MINGW_PRINTF_FORMAT, a, b)))
31 #define PA_GCC_PRINTF_ATTR(a,b) __attribute__ ((format (printf, a, b)))
39 #define PA_GCC_SENTINEL __attribute__ ((sentinel))
46 #define PA_GCC_NORETURN __attribute__((noreturn))
53 #define PA_GCC_UNUSED __attribute__ ((unused))
60 #define PA_GCC_DESTRUCTOR __attribute__ ((destructor))
68 #define PA_GCC_PURE __attribute__ ((pure))
77 #define PA_GCC_CONST __attribute__ ((const))
86 #define PA_GCC_DEPRECATED __attribute__ ((deprecated))
95 #define PA_GCC_PACKED __attribute__ ((packed))
104 #define PA_GCC_ALLOC_SIZE(x) __attribute__ ((__alloc_size__(x)))
105 #define PA_GCC_ALLOC_SIZE2(x,y) __attribute__ ((__alloc_size__(x,y)))
116 #define PA_GCC_MALLOC __attribute__ ((malloc))
126 #define PA_GCC_WEAKREF(x) __attribute__((weakref(#x)))