Lines Matching refs:sy

570 	uint32_t x, sy, dy;  in gfxfb_blt_video_to_buffer()  local
613 for (sy = SourceY, dy = DestinationY; dy < Height + DestinationY; in gfxfb_blt_video_to_buffer()
614 sy++, dy++) { in gfxfb_blt_video_to_buffer()
615 off = sy * pitch + SourceX * bpp; in gfxfb_blt_video_to_buffer()
672 uint32_t x, sy, dy; in gfxfb_blt_buffer_to_video() local
715 for (sy = SourceY, dy = DestinationY; sy < Height + SourceY; in gfxfb_blt_buffer_to_video()
716 sy++, dy++) { in gfxfb_blt_buffer_to_video()
721 source = (uint8_t *)BltBuffer + sy * Delta + in gfxfb_blt_buffer_to_video()
729 sy * Delta + in gfxfb_blt_buffer_to_video()
988 uint32_t sx, sy, dx, dy; in gfx_fb_cons_copy() local
996 sy = ma->s_row; in gfx_fb_cons_copy()
1003 if (sy + height > gfx_fb.framebuffer_common.framebuffer_height) in gfx_fb_cons_copy()
1004 height = gfx_fb.framebuffer_common.framebuffer_height - sy; in gfx_fb_cons_copy()
1020 sx, sy, dx, dy, width, height, 0); in gfx_fb_cons_copy()
1036 if (dy * pitch + dx > sy * pitch + sx) { in gfx_fb_cons_copy()
1037 sy += height; in gfx_fb_cons_copy()
1043 source = &shadow_fb[sy * pitch + sx]; in gfx_fb_cons_copy()
1050 sy += step; in gfx_fb_cons_copy()
1350 int dx, sx, dy, sy; in gfx_fb_line() local
1358 sy = y0 < y1? 1 : -1; in gfx_fb_line()
1373 y2 += sy; in gfx_fb_line()
1394 y0 += sy; in gfx_fb_line()
1406 int sx, sy, xx, yy, xy, width; in gfx_fb_bezier() local
1415 sy = y2 - y1; in gfx_fb_bezier()
1418 curvature = xx*sy - yy*sx; in gfx_fb_bezier()
1420 if (sx*sx + sy*sy > xx*xx+yy*yy) { in gfx_fb_bezier()
1424 y0 = sy + y1; in gfx_fb_bezier()
1431 yy += sy; in gfx_fb_bezier()
1432 sy = y0 < y2? 1 : -1; in gfx_fb_bezier()
1433 yy *= sy; in gfx_fb_bezier()
1437 if (curvature * sx * sy < 0) { in gfx_fb_bezier()
1443 dx = 4 * sy * curvature * (x1 - x0) + xx - xy; in gfx_fb_bezier()
1461 y0 += sy; in gfx_fb_bezier()