Home | History | Annotate | Download | only in INPUTS

Lines Matching refs:E3

43 /* (T1 *) if E1, otherwise (T2 *) if E2, otherwise (T3 *) if E3.  */
44 #define first_of3p(T1, E1, T2, E2, T3, E3) \
47 type_if(T3, (!(E1) && !(E2) && (E3))))
48 /* (T1 *) if E1, otherwise (T2 *) if E2, otherwise (T3 *) if E3, otherwise
50 #define first_of4p(T1, E1, T2, E2, T3, E3, T4, E4) \
53 type_if(T3, (!(E1) && !(E2) && (E3))), \
54 type_if(T4, (!(E1) && !(E2) && !(E3) && (E4))))
55 /* (T1 *) if E1, otherwise (T2 *) if E2, otherwise (T3 *) if E3, otherwise
57 #define first_of6p(T1, E1, T2, E2, T3, E3, T4, E4, T5, E5, T6, E6) \
60 type_if(T3, (!(E1) && !(E2) && (E3))), \
61 type_if(T4, (!(E1) && !(E2) && !(E3) && (E4))), \
62 type_if(T5, (!(E1) && !(E2) && !(E3) && !(E4) && (E5))), \
63 type_if(T6, (!(E1) && !(E2) && !(E3) \
69 #define first_of3(T1, E1, T2, E2, T3, E3) \
70 __typeof__(*((first_of3p(T1, (E1), T2, (E2), T3, (E3)))0))
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) \
74 __typeof__(*((first_of6p(T1, (E1), T2, (E2), T3, (E3), \