Lines Matching refs:y

176 gfx_parse_mode_str(char *str, int *x, int *y, int *depth)  in gfx_parse_mode_str()  argument
188 *y = strtoul(p, &end, 0); in gfx_parse_mode_str()
189 if (*y == 0 || errno != 0) in gfx_parse_mode_str()
489 uint32_t data, bpp, pitch, y, x; in gfxfb_blt_fill() local
527 for (y = DestinationY; y < Height + DestinationY; y++) { in gfxfb_blt_fill()
528 off = y * pitch + DestinationX * bpp; in gfxfb_blt_fill()
1160 for (uint32_t y = 0; y < height; y++) { in gfx_fb_cons_display() local
1162 bitmap_cpy(BltBuffer, &data[y * width], width); in gfx_fb_cons_display()
1268 for (uint32_t y = 0; y < height; y++) { in gfx_fb_display_cursor() local
1302 gfx_fb_setpixel(uint32_t x, uint32_t y) in gfx_fb_setpixel() argument
1312 y >= gfx_fb.framebuffer_common.framebuffer_height) in gfx_fb_setpixel()
1315 gfxfb_blt(&fg.n, GfxFbBltVideoFill, 0, 0, x, y, 1, 1, 0); in gfx_fb_setpixel()
1506 y1 = uy1 * vf_height + tems.ts_p_offset.y + yshift; in gfx_term_drawrect()
1509 y2 = uy2 * vf_height + tems.ts_p_offset.y; in gfx_term_drawrect()
1517 y1 = uy1 * vf_height + tems.ts_p_offset.y; in gfx_term_drawrect()
1519 y2 = uy2 * vf_height + tems.ts_p_offset.y; in gfx_term_drawrect()
1527 y1 = uy1 * vf_height + tems.ts_p_offset.y; in gfx_term_drawrect()
1532 y2 = uy1 * vf_height + tems.ts_p_offset.y + yshift; in gfx_term_drawrect()
1539 y1 = uy2 * vf_height + tems.ts_p_offset.y; in gfx_term_drawrect()
1542 y2 = uy2 * vf_height + tems.ts_p_offset.y; in gfx_term_drawrect()
1548 y1 = uy1 * vf_height + tems.ts_p_offset.y + yshift; in gfx_term_drawrect()
1551 y2 = uy1 * vf_height + tems.ts_p_offset.y; in gfx_term_drawrect()
1558 y1 = uy2 * vf_height + tems.ts_p_offset.y; in gfx_term_drawrect()
1562 y2 = uy2 * vf_height + tems.ts_p_offset.y; in gfx_term_drawrect()
1577 uint32_t i, j, x, y, fheight, fwidth; in gfx_fb_putimage() local
1666 tems.ts_p_offset.y; in gfx_fb_putimage()
1730 for (y = 0; y < fheight; y++) { in gfx_fb_putimage()
1746 j = y * fwidth + x; in gfx_fb_putimage()
1749 i = GETPIXEL(x, y); in gfx_fb_putimage()
2292 unsigned long x = 0, y = 0; in font_set() local
2302 y = strtoul(eptr + 1, &eptr, 10); in font_set()
2305 if (fl->font_data->width == x && fl->font_data->height == y) in font_set()