Home
last modified time | relevance | path

Searched refs:bitmap (Results 1 – 15 of 15) sorted by relevance

/rk3399_rockchip-uboot/arch/x86/lib/
H A Dpirq_routing.c14 static u8 pirq_get_next_free_irq(struct udevice *dev, u8 *pirq, u16 bitmap, in pirq_get_next_free_irq() argument
23 if (!((bitmap >> i) & 1)) in pirq_get_next_free_irq()
70 int bitmap = irq->irq[intx].bitmap; in pirq_route_irqs() local
74 'A' + intx, link, bitmap); in pirq_route_irqs()
76 if (!bitmap || !link) { in pirq_route_irqs()
87 irq = pirq_get_next_free_irq(dev, pirq, bitmap, in pirq_route_irqs()
/rk3399_rockchip-uboot/api/
H A Dapi_display.c42 int display_draw_bitmap(ulong bitmap, int x, int y) in display_draw_bitmap() argument
44 if (!bitmap) in display_draw_bitmap()
47 return lcd_display_bitmap(bitmap, x, y); in display_draw_bitmap()
H A Dapi_private.h32 int display_draw_bitmap(ulong bitmap, int x, int y);
H A Dapi.c564 ulong bitmap; in API_display_draw_bitmap() local
567 bitmap = va_arg(ap, ulong); in API_display_draw_bitmap()
571 return display_draw_bitmap(bitmap, x, y); in API_display_draw_bitmap()
/rk3399_rockchip-uboot/drivers/video/drm/
H A Dlibnsbmp.h55 typedef void (*bmp_bitmap_cb_destroy)(void *bitmap);
56 typedef unsigned char* (*bmp_bitmap_cb_get_buffer)(void *bitmap);
57 typedef size_t (*bmp_bitmap_cb_get_bpp)(void *bitmap);
86 void *bitmap; member
H A Dlibnsbmp.c339 bmp->bitmap = bmp->bitmap_callbacks.bitmap_create(bmp->width, bmp->height, flags); in bmp_info_header_parse()
340 if (!bmp->bitmap) { in bmp_info_header_parse()
523 top = bmp->bitmap_callbacks.bitmap_get_buffer(bmp->bitmap); in bmp_decode_rgb32()
602 top = bmp->bitmap_callbacks.bitmap_get_buffer(bmp->bitmap); in bmp_decode_rgb24()
673 top = bmp->bitmap_callbacks.bitmap_get_buffer(bmp->bitmap); in bmp_decode_rgb16()
764 top = bmp->bitmap_callbacks.bitmap_get_buffer(bmp->bitmap); in bmp_decode_rgb()
829 top = bmp->bitmap_callbacks.bitmap_get_buffer(bmp->bitmap); in bmp_decode_mask()
884 top = bmp->bitmap_callbacks.bitmap_get_buffer(bmp->bitmap); in bmp_decode_rle8()
1038 top = bmp->bitmap_callbacks.bitmap_get_buffer(bmp->bitmap); in bmp_decode_rle4()
1214 if (bmp->bitmap) { in bmp_analyse()
[all …]
H A Drockchip_display.c1364 static unsigned char *bitmap_get_buffer(void *bitmap) in bitmap_get_buffer() argument
1366 return bitmap; in bitmap_get_buffer()
1369 static void bitmap_destroy(void *bitmap) in bitmap_destroy() argument
1371 free(bitmap); in bitmap_destroy()
1380 image = (u8 *)bmp->bitmap; in bmp_copy()
/rk3399_rockchip-uboot/examples/api/
H A Dglue.h65 int ub_display_draw_bitmap(ulong bitmap, int x, int y);
H A Dglue.c405 int ub_display_draw_bitmap(ulong bitmap, int x, int y) in ub_display_draw_bitmap() argument
409 if (!syscall(API_DISPLAY_DRAW_BITMAP, &err, bitmap, x, y)) in ub_display_draw_bitmap()
/rk3399_rockchip-uboot/arch/x86/include/asm/
H A Dpirq_routing.h33 u16 bitmap; /* Available IRQs */ member
/rk3399_rockchip-uboot/common/
H A Dusb_hub.c633 unsigned char *bitmap; in usb_hub_configure() local
669 bitmap = (unsigned char *)&hub->desc.u.hs.DeviceRemovable[0]; in usb_hub_configure()
671 memset(bitmap, 0xff, (USB_MAXCHILDREN+1+7)/8); in usb_hub_configure()
672 bitmap = (unsigned char *)&hub->desc.u.hs.PortPowerCtrlMask[0]; in usb_hub_configure()
673 memset(bitmap, 0xff, (USB_MAXCHILDREN+1+7)/8); /* PowerMask = 1B */ in usb_hub_configure()
/rk3399_rockchip-uboot/arch/x86/cpu/
H A Dirq.c83 slot->irq[pin - 1].bitmap = priv->irq_mask; in fill_irq_info()
/rk3399_rockchip-uboot/drivers/video/
H A DKconfig12 a bitmap display of various sizes and depths which can be drawn on
22 a bitmap display of various sizes and depths which can be drawn on
111 needing to provide a bitmap for each font and size that is needed.
480 a normal bitmap display and can display images as well as text.
524 output on a bitmap display from an in-memory frame buffer.
H A Dstb_truetype.h293 unsigned char *bitmap;
299 bitmap = stbtt_GetCodepointBitmap(&font, 0,stbtt_ScaleForPixelHeight(&font, s), c, &w, &h, 0,0);
303 putchar(" .:ioVM@"[bitmap[j*w+i]>>5]);
759 STBTT_DEF void stbtt_FreeBitmap(unsigned char *bitmap, void *userdata);
2415 STBTT_DEF void stbtt_FreeBitmap(unsigned char *bitmap, void *userdata) in stbtt_FreeBitmap() argument
2417 STBTT_free(bitmap, userdata); in stbtt_FreeBitmap()
/rk3399_rockchip-uboot/drivers/mtd/nand/raw/
H A Dnand_base.c1647 const unsigned char *bitmap = buf; in nand_check_erased_buf() local
1651 for (; len && ((uintptr_t)bitmap) % sizeof(long); in nand_check_erased_buf()
1652 len--, bitmap++) { in nand_check_erased_buf()
1653 weight = hweight8(*bitmap); in nand_check_erased_buf()
1659 for (; len >= 4; len -= 4, bitmap += 4) { in nand_check_erased_buf()
1660 weight = hweight32(*((u32 *)bitmap)); in nand_check_erased_buf()
1666 for (; len > 0; len--, bitmap++) { in nand_check_erased_buf()
1667 weight = hweight8(*bitmap); in nand_check_erased_buf()