Lines Matching defs:xy
176 #define inpack3(in, n, xy, m) \
177 movq 4*(n)(in), xy ## 0; \
178 xorq w+4*m(CTX), xy ## 0; \
180 movq 4*(4+(n))(in), xy ## 1; \
181 xorq w+4*m(CTX), xy ## 1; \
183 movq 4*(8+(n))(in), xy ## 2; \
184 xorq w+4*m(CTX), xy ## 2;
186 #define outunpack3(op, out, n, xy, m) \
187 xorq w+4*m(CTX), xy ## 0; \
188 op ## q xy ## 0, 4*(n)(out); \
190 xorq w+4*m(CTX), xy ## 1; \
191 op ## q xy ## 1, 4*(4+(n))(out); \
193 xorq w+4*m(CTX), xy ## 2; \
194 op ## q xy ## 2, 4*(8+(n))(out);