Lines Matching defs:xsub

221 	unsigned int xsub = yuv->xsub;
252 for (x = 0; x < width; x += xsub) {
253 u_mem[x*cs/xsub] = colors_top[x * 7 / width].u;
254 v_mem[x*cs/xsub] = colors_top[x * 7 / width].v;
256 u_mem += stride * cs / xsub;
257 v_mem += stride * cs / xsub;
261 for (x = 0; x < width; x += xsub) {
262 u_mem[x*cs/xsub] = colors_middle[x * 7 / width].u;
263 v_mem[x*cs/xsub] = colors_middle[x * 7 / width].v;
265 u_mem += stride * cs / xsub;
266 v_mem += stride * cs / xsub;
270 for (x = 0; x < width * 5 / 7; x += xsub) {
271 u_mem[x*cs/xsub] =
273 v_mem[x*cs/xsub] =
276 for (; x < width * 6 / 7; x += xsub) {
277 u_mem[x*cs/xsub] = colors_bottom[(x - width * 5 / 7) *
279 v_mem[x*cs/xsub] = colors_bottom[(x - width * 5 / 7) *
282 for (; x < width; x += xsub) {
283 u_mem[x*cs/xsub] = colors_bottom[7].u;
284 v_mem[x*cs/xsub] = colors_bottom[7].v;
286 u_mem += stride * cs / xsub;
287 v_mem += stride * cs / xsub;
340 unsigned int xsub = yuv->xsub;
342 unsigned int xstep = cs * xsub;
395 colors_top[(x+xsub) * 7 / width].u << 2,
396 colors_top[(x+xsub) * 7 / width].v << 2);
397 uv_mem += stride * cs / xsub;
405 colors_middle[(x+xsub) * 7 / width].u << 2,
406 colors_middle[(x+xsub) * 7 / width].v << 2);
407 uv_mem += stride * cs / xsub;
415 colors_bottom[(x+xsub) * 4 / (width * 5 / 7)].u << 2,
416 colors_bottom[(x+xsub) * 4 / (width * 5 / 7)].v << 2);
421 colors_bottom[((x+xsub) - width * 5 / 7) * 3 / (width / 7) + 4].u << 2,
422 colors_bottom[((x+xsub) - width * 5 / 7) * 3 / (width / 7) + 4].v << 2);
429 uv_mem += stride * cs / xsub;
1431 unsigned int xsub = yuv->xsub;
1442 u_mem[x/xsub*cs] = color.u;
1443 v_mem[x/xsub*cs] = color.v;
1448 u_mem += stride * cs / xsub;
1449 v_mem += stride * cs / xsub;
1463 unsigned int xsub = yuv->xsub;
1465 unsigned int xstep = cs * xsub;
1484 struct color_yuv b = make_tiles_yuv_color(x+xsub, y, width);
1489 uv_mem += stride * cs / xsub;