Lines Matching refs:__attribute__
73 #define inline inline __attribute__((always_inline)) notrace
74 #define __inline__ __inline__ __attribute__((always_inline)) notrace
75 #define __inline __inline __attribute__((always_inline)) notrace
83 #define __always_inline inline __attribute__((always_inline))
84 #define noinline __attribute__((noinline))
86 #define __deprecated __attribute__((deprecated))
87 #define __packed __attribute__((packed))
88 #define __weak __attribute__((weak))
89 #define __alias(symbol) __attribute__((alias(#symbol)))
103 #define __naked __attribute__((naked)) noinline __noclone notrace
105 #define __noreturn __attribute__((noreturn))
117 #define __pure __attribute__((pure))
118 #define __aligned(x) __attribute__((aligned(x)))
119 #define __printf(a, b) __attribute__((format(printf, a, b)))
120 #define __scanf(a, b) __attribute__((format(scanf, a, b)))
121 #define __attribute_const__ __attribute__((__const__))
122 #define __maybe_unused __attribute__((unused))
123 #define __always_unused __attribute__((unused))
132 # define __used __attribute__((__unused__))
134 # define __used __attribute__((__used__))
144 #define __must_check __attribute__((warn_unused_result))
156 #define __used __attribute__((__used__))
179 #define __cold __attribute__((__cold__))
184 # define __compiletime_warning(message) __attribute__((warning(message)))
185 # define __compiletime_error(message) __attribute__((error(message)))
202 #define __noclone __attribute__((__noclone__, __optimize__("no-tracer")))
213 #define __visible __attribute__((externally_visible))
230 #define __assume_aligned(a, ...) __attribute__((__assume_aligned__(a, ## __VA_ARGS__)))
266 #define __no_sanitize_address __attribute__((no_sanitize_address))