Lines Matching refs:__attribute__
164 #define ATTRIBUTE_CONST __attribute__((__const__))
170 #define FLATTEN __attribute__((__flatten__))
177 # define PRINTFLIKE(f, a) __attribute__ ((format(__MINGW_PRINTF_FORMAT, f, a)))
179 # define PRINTFLIKE(f, a) __attribute__ ((format(__printf__, f, a)))
186 #define MALLOCLIKE __attribute__((__malloc__))
195 # define ALWAYS_INLINE inline __attribute__((always_inline))
207 #define PACKED __attribute__((__packed__))
216 #define ATTRIBUTE_PURE __attribute__((__pure__))
222 #define ATTRIBUTE_RETURNS_NONNULL __attribute__((__returns_nonnull__))
231 # define NORETURN __attribute__((__noreturn__))
240 #define ALIGN16 __attribute__((aligned(16)))
283 # define PUBLIC __attribute__((visibility("default")))
284 # define USED __attribute__((used))
301 #define UNUSED __attribute__((unused))
317 #define MUST_CHECK __attribute__((warn_unused_result))
323 #define ATTRIBUTE_NOINLINE __attribute__((noinline))
332 #define ENUM_PACKED __attribute__((packed))
458 typedef int __attribute__((capability("mutex"))) lock_cap_t;
460 #define guarded_by(l) __attribute__((guarded_by(l)))