Lines Matching defs:G
48 /* For no G bits set, NZCV = C. */
57 /* Compute N from first D & G.
58 Use bit 2 to signal first G bit seen. */
64 /* Accumulate Z from each D & G. */
67 /* Compute C from last !(D & G). Replace previous. */
79 /* Compute C from first (i.e last) !(D & G).
80 Use bit 2 to signal first G bit seen. */
86 /* Accumulate Z from each D & G. */
89 /* Compute N from last (i.e first) D & G. Replace previous. */
142 #define DO_AND(N, M, G) (((N) & (M)) & (G))
143 #define DO_BIC(N, M, G) (((N) & ~(M)) & (G))
144 #define DO_EOR(N, M, G) (((N) ^ (M)) & (G))
145 #define DO_ORR(N, M, G) (((N) | (M)) & (G))
146 #define DO_ORN(N, M, G) (((N) | ~(M)) & (G))
147 #define DO_NOR(N, M, G) (~((N) | (M)) & (G))
148 #define DO_NAND(N, M, G) (~((N) & (M)) & (G))
149 #define DO_SEL(N, M, G) (((N) & (G)) | ((M) & ~(G)))
1991 /* Set in D the first bit of G. */
4036 /* Compute a mask into RETB that is true for all G, up to and including
4037 * (if after) or excluding (if !after) the first G & N.
4048 /* For all G, no N are set; break not found. */