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 page_aligned __attribute__((aligned(4096)))
60 #define sse2 __attribute__((target("sse2,fpmath=sse")))
61 #define sse4_2 __attribute__((target("sse4.2,sse2,fpmath=sse")))
65 #define avx2 __attribute__((target("avx2,sse4.2,sse2,fpmath=sse")))
69 #define fast __attribute__((optimize("Ofast")))
75 #define fast_memcpy __attribute__((optimize("Ofast"))) __attribute__((target("inline-all-stringops")))
77 #define fast_memcpy __attribute__((target("inline-all-stringops")))