Home | History | Annotate | Download | only in INPUTS

Lines Matching refs:E4

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))), \
62 type_if(T5, (!(E1) && !(E2) && !(E3) && !(E4) && (E5))), \
64 && !(E4) && !(E5) && (E6))))
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))