Lines Matching refs:uint32_t

203 uint32_t
419 uint32_t color, best, dist, k; in rgb_to_color_index()
453 gfx_mem_wr1(uint8_t *base, size_t size, uint32_t o, uint8_t v) in gfx_mem_wr1()
462 gfx_mem_wr2(uint8_t *base, size_t size, uint32_t o, uint16_t v) in gfx_mem_wr2()
471 gfx_mem_wr4(uint8_t *base, size_t size, uint32_t o, uint32_t v) in gfx_mem_wr4()
476 *(uint32_t *)(base + o) = v; in gfx_mem_wr4()
481 uint32_t DestinationX, uint32_t DestinationY, in gfxfb_blt_fill()
482 uint32_t Width, uint32_t Height) in gfxfb_blt_fill()
489 uint32_t data, bpp, pitch, y, x; in gfxfb_blt_fill()
561 gfxfb_blt_video_to_buffer(void *BltBuffer, uint32_t SourceX, uint32_t SourceY, in gfxfb_blt_video_to_buffer()
562 uint32_t DestinationX, uint32_t DestinationY, in gfxfb_blt_video_to_buffer()
563 uint32_t Width, uint32_t Height, uint32_t Delta) in gfxfb_blt_video_to_buffer()
570 uint32_t x, sy, dy; in gfxfb_blt_video_to_buffer()
571 uint32_t bpp, pitch, copybytes; in gfxfb_blt_video_to_buffer()
624 uint32_t c = 0; in gfxfb_blt_video_to_buffer()
639 c = *(uint32_t *)sb; in gfxfb_blt_video_to_buffer()
646 *(uint32_t *)p = gfx_fb_color_map( in gfxfb_blt_video_to_buffer()
663 gfxfb_blt_buffer_to_video(void *BltBuffer, uint32_t SourceX, uint32_t SourceY, in gfxfb_blt_buffer_to_video()
664 uint32_t DestinationX, uint32_t DestinationY, in gfxfb_blt_buffer_to_video()
665 uint32_t Width, uint32_t Height, uint32_t Delta) in gfxfb_blt_buffer_to_video()
672 uint32_t x, sy, dy; in gfxfb_blt_buffer_to_video()
673 uint32_t bpp, pitch, copybytes; in gfxfb_blt_buffer_to_video()
726 uint32_t c; in gfxfb_blt_buffer_to_video()
773 gfxfb_blt_video_to_video(uint32_t SourceX, uint32_t SourceY, in gfxfb_blt_video_to_video()
774 uint32_t DestinationX, uint32_t DestinationY, in gfxfb_blt_video_to_video()
775 uint32_t Width, uint32_t Height) in gfxfb_blt_video_to_video()
777 uint32_t bpp, copybytes; in gfxfb_blt_video_to_video()
828 gfxfb_shadow_fill(uint32_t *BltBuffer, in gfxfb_shadow_fill()
829 uint32_t DestinationX, uint32_t DestinationY, in gfxfb_shadow_fill()
830 uint32_t Width, uint32_t Height) in gfxfb_shadow_fill()
832 uint32_t fbX, fbY; in gfxfb_shadow_fill()
849 uint32_t y2 = Height + DestinationY; in gfxfb_shadow_fill()
850 for (uint32_t y1 = DestinationY; y1 < y2; y1++) { in gfxfb_shadow_fill()
851 uint32_t off = y1 * fbX + DestinationX; in gfxfb_shadow_fill()
853 for (uint32_t x = 0; x < Width; x++) { in gfxfb_shadow_fill()
854 *(uint32_t *)&shadow_fb[off + x] = *BltBuffer; in gfxfb_shadow_fill()
861 uint32_t SourceX, uint32_t SourceY, in gfxfb_blt()
862 uint32_t DestinationX, uint32_t DestinationY, in gfxfb_blt()
863 uint32_t Width, uint32_t Height, uint32_t Delta) in gfxfb_blt()
968 uint32_t width, height; in gfx_fb_cons_clear()
987 uint32_t width, height, bytes; in gfx_fb_cons_copy()
988 uint32_t sx, sy, dx, dy; in gfx_fb_cons_copy()
989 uint32_t pitch; in gfx_fb_cons_copy()
1095 uint32_t i; in bitmap_cpy()
1111 allocate_glyphbuffer(uint32_t width, uint32_t height) in allocate_glyphbuffer()
1134 uint32_t size; in gfx_fb_cons_display()
1137 if ((uint32_t)da->col >= gfx_fb.framebuffer_common.framebuffer_width || in gfx_fb_cons_display()
1138 (uint32_t)da->row >= gfx_fb.framebuffer_common.framebuffer_height || in gfx_fb_cons_display()
1139 (uint32_t)da->col + da->width > in gfx_fb_cons_display()
1141 (uint32_t)da->row + da->height > in gfx_fb_cons_display()
1150 uint32_t pitch = gfx_fb.framebuffer_common.framebuffer_width; in gfx_fb_cons_display()
1151 uint32_t dx, dy, width, height; in gfx_fb_cons_display()
1160 for (uint32_t y = 0; y < height; y++) { in gfx_fb_cons_display()
1198 gfx_fb_cursor_impl(void *buf, uint32_t stride, uint32_t fg, uint32_t bg, in gfx_fb_cursor_impl()
1212 uint32_t p32; in gfx_fb_cursor_impl()
1239 uint32_t p32; in gfx_fb_display_cursor()
1257 uint32_t pitch = gfx_fb.framebuffer_common.framebuffer_width; in gfx_fb_display_cursor()
1258 uint32_t dx, dy, width, height; in gfx_fb_display_cursor()
1268 for (uint32_t y = 0; y < height; y++) { in gfx_fb_display_cursor()
1302 gfx_fb_setpixel(uint32_t x, uint32_t y) in gfx_fb_setpixel()
1322 gfx_fb_drawrect(uint32_t x1, uint32_t y1, uint32_t x2, uint32_t y2, in gfx_fb_drawrect()
1323 uint32_t fill) in gfx_fb_drawrect()
1348 gfx_fb_line(uint32_t x0, uint32_t y0, uint32_t x1, uint32_t y1, uint32_t wd) in gfx_fb_line()
1372 (y1 != (uint32_t)y2 || dx > dy)) { in gfx_fb_line()
1386 (x1 != (uint32_t)x2 || dx < dy)) { in gfx_fb_line()
1403 gfx_fb_bezier(uint32_t x0, uint32_t y0, uint32_t x1, uint32_t y1, uint32_t x2, in gfx_fb_bezier()
1404 uint32_t y2, uint32_t wd) in gfx_fb_bezier()
1475 gfx_term_drawrect(uint32_t ux1, uint32_t uy1, uint32_t ux2, uint32_t uy2) in gfx_term_drawrect()
1480 uint32_t vf_width, vf_height; in gfx_term_drawrect()
1568 gfx_fb_putimage(png_t *png, uint32_t ux1, uint32_t uy1, uint32_t ux2, in gfx_fb_putimage()
1569 uint32_t uy2, uint32_t flags) in gfx_fb_putimage()
1577 uint32_t i, j, x, y, fheight, fwidth; in gfx_fb_putimage()
1726 const uint32_t wcstep = ((png->width - 1) << 16) / (fwidth - 1); in gfx_fb_putimage()
1727 const uint32_t hcstep = ((png->height - 1) << 16) / (fheight - 1); in gfx_fb_putimage()
1729 uint32_t hc = 0; in gfx_fb_putimage()
1731 uint32_t hc2 = (hc >> 9) & 0x7f; in gfx_fb_putimage()
1732 uint32_t hc1 = 0x80 - hc2; in gfx_fb_putimage()
1734 uint32_t offset_y = hc >> 16; in gfx_fb_putimage()
1735 uint32_t offset_y1 = offset_y + 1; in gfx_fb_putimage()
1737 uint32_t wc = 0; in gfx_fb_putimage()
1739 uint32_t wc2 = (wc >> 9) & 0x7f; in gfx_fb_putimage()
1740 uint32_t wc1 = 0x80 - wc2; in gfx_fb_putimage()
1742 uint32_t offset_x = wc >> 16; in gfx_fb_putimage()
1743 uint32_t offset_x1 = offset_x + 1; in gfx_fb_putimage()
1757 uint32_t p00 = GETPIXEL(offset_x, offset_y); in gfx_fb_putimage()
1758 uint32_t p01 = GETPIXEL(offset_x, offset_y1); in gfx_fb_putimage()
1759 uint32_t p10 = GETPIXEL(offset_x1, offset_y); in gfx_fb_putimage()
1760 uint32_t p11 = GETPIXEL(offset_x1, offset_y1); in gfx_fb_putimage()
1990 uint32_t glyphs; in load_font()