Lines Matching defs:t
93 #define __MAP1(m,t,a) m(t,a) argument
94 #define __MAP2(m,t,a,...) m(t,a), __MAP1(m,__VA_ARGS__) argument
95 #define __MAP3(m,t,a,...) m(t,a), __MAP2(m,__VA_ARGS__) argument
96 #define __MAP4(m,t,a,...) m(t,a), __MAP3(m,__VA_ARGS__) argument
97 #define __MAP5(m,t,a,...) m(t,a), __MAP4(m,__VA_ARGS__) argument
98 #define __MAP6(m,t,a,...) m(t,a), __MAP5(m,__VA_ARGS__) argument
101 #define __SC_DECL(t, a) t a argument
102 #define __TYPE_IS_L(t) (__same_type((t)0, 0L)) argument
103 #define __TYPE_IS_UL(t) (__same_type((t)0, 0UL)) argument
104 #define __TYPE_IS_LL(t) (__same_type((t)0, 0LL) || __same_type((t)0, 0ULL)) argument
105 #define __SC_LONG(t, a) __typeof(__builtin_choose_expr(__TYPE_IS_LL(t), 0LL, 0L)) a argument
106 #define __SC_CAST(t, a) (t) a argument
107 #define __SC_ARGS(t, a) a argument
108 #define __SC_TEST(t, a) (void)BUILD_BUG_ON_ZERO(!__TYPE_IS_LL(t) && sizeof(t) > sizeof(long)) argument
111 #define __SC_STR_ADECL(t, a) #a argument
112 #define __SC_STR_TDECL(t, a) #t argument