Lines Matching refs:E1

40 /* (T1 *) if E1, otherwise (T2 *) if E2.  */
41 #define first_of2p(T1, E1, T2, E2) type_comb2(type_if(T1, (E1)), \
42 type_if(T2, (!(E1) && (E2))))
43 /* (T1 *) if E1, otherwise (T2 *) if E2, otherwise (T3 *) if E3. */
44 #define first_of3p(T1, E1, T2, E2, T3, E3) \
45 type_comb3(type_if(T1, (E1)), \
46 type_if(T2, (!(E1) && (E2))), \
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) \
51 type_comb4(type_if(T1, (E1)), \
52 type_if(T2, (!(E1) && (E2))), \
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) \
58 type_comb6(type_if(T1, (E1)), \
59 type_if(T2, (!(E1) && (E2))), \
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) \
67 #define first_of2(T1, E1, T2, E2) \
68 __typeof__(*((first_of2p(T1, (E1), T2, (E2)))0))
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), \