Lines Matching refs:__attribute__
75 #define __aligned(x) __attribute__((__aligned__(x)))
76 #define __section(x) __attribute__((__section__(x)))
78 #define __always_inline __attribute__((__always_inline__))
79 #define __attribute_const__ __attribute__((__const__))
80 #define __attribute_pure__ __attribute__((__pure__))
81 #define __dead __attribute__((__noreturn__))
82 #define __noreturn __attribute__((__noreturn__))
83 #define __mallocfunc __attribute__((__malloc__))
84 #define __packed __attribute__((__packed__))
85 #define __returns_twice __attribute__((__returns_twice__))
86 #define __unused __attribute__((__unused__))
87 #define __used __attribute__((__used__))
89 #define __printflike(x, y) __attribute__((__format__(printf, x, y)))
90 #define __scanflike(x, y) __attribute__((__format__(scanf, x, y)))
91 #define __strftimelike(x) __attribute__((__format__(strftime, x, 0)))