Lines Matching refs:dist
315 unsigned dist = MIN2(first_full_tile_y - y, h);
318 x, y, w, dist,
321 if (dist == h)
324 y += dist;
325 h -= dist;
330 unsigned dist = (y + h) - last_full_tile_y;
333 x, last_full_tile_y, w, dist,
336 h -= dist;
341 unsigned dist = MIN2(first_full_tile_x - x, w);
344 x, y, dist, h,
347 if (dist == w)
350 x += dist;
351 w -= dist;
356 unsigned dist = (x + w) - last_full_tile_x;
359 last_full_tile_x, y, dist, h,
362 w -= dist;