Home | History | Annotate | Download | only in INPUTS

Lines Matching refs:T4

31 #define type_comb4(T1, T2, T3, T4)				\
32 type_comb2(T1, type_comb2(T2, type_comb2(T3, T4)))
33 #define type_comb6(T1, T2, T3, T4, T5, T6) \
37 type_comb2(T4, \
49 (T4 *) if E4. */
50 #define first_of4p(T1, E1, T2, E2, T3, E3, T4, E4) \
54 type_if(T4, (!(E1) && !(E2) && !(E3) && (E4))))
56 (T4 *) if E4, otherwise (T5 *) if E5, otherwise (T6 *) if E6. */
57 #define first_of6p(T1, E1, T2, E2, T3, E3, T4, E4, T5, E5, T6, E6) \
61 type_if(T4, (!(E1) && !(E2) && !(E3) && (E4))), \
71 #define first_of4(T1, E1, T2, E2, T3, E3, T4, E4) \
72 __typeof__(*((first_of4p(T1, (E1), T2, (E2), T3, (E3), T4, (E4)))0))
73 #define first_of6(T1, E1, T2, E2, T3, E3, T4, E4, T5, E5, T6, E6) \
75 T4, (E4), T5, (E5), T6, (E6)))0))