Lines Matching refs:__attribute__
34 #define noinline __attribute__((noinline))
35 #define force_inline inline /* __attribute__((always_inline)) */
36 #define fastcall __attribute__((regparm(3)))
37 #define must_check __attribute__((warn_unused_result))
38 #define constant __attribute__((const))
39 #define pure __attribute__((pure))
40 #define tightly_packed __attribute__((__packed__))
41 #define flatten __attribute__((flatten))
42 #define nonnull __attribute__((nonnull))
43 #define page_aligned __attribute__((aligned(4096)))
62 #define sse2 fast __attribute__((target("sse2,fpmath=sse")))
63 #define sse4_2 fast __attribute__((target("sse4.2,sse2,fpmath=sse")))
67 #define fast __attribute__((optimize("Ofast")))
73 #define avx2 fast __attribute__((target("avx2,avx,sse4.2,sse2,fpmath=sse")))
82 #define fast_memcpy fast __attribute__((target("inline-all-stringops")))