/u-boot/arch/x86/lib/ |
A D | pirq_routing.c | 17 static u8 pirq_get_next_free_irq(struct udevice *dev, u8 *pirq, u16 bitmap, in pirq_get_next_free_irq() argument 26 if (!((bitmap >> i) & 1)) in pirq_get_next_free_irq() 73 int bitmap = irq->irq[intx].bitmap; in pirq_route_irqs() local 77 'A' + intx, link, bitmap); in pirq_route_irqs() 79 if (!bitmap || !link) { in pirq_route_irqs() 90 irq = pirq_get_next_free_irq(dev, pirq, bitmap, in pirq_route_irqs()
|
/u-boot/api/ |
A D | api_display.c | 43 int display_draw_bitmap(ulong bitmap, int x, int y) in display_draw_bitmap() argument 45 if (!bitmap) in display_draw_bitmap() 48 return lcd_display_bitmap(bitmap, x, y); in display_draw_bitmap()
|
A D | api_private.h | 32 int display_draw_bitmap(ulong bitmap, int x, int y);
|
A D | api.c | 583 ulong bitmap; in API_display_draw_bitmap() local 586 bitmap = va_arg(ap, ulong); in API_display_draw_bitmap() 590 return display_draw_bitmap(bitmap, x, y); in API_display_draw_bitmap()
|
/u-boot/lib/efi_selftest/ |
A D | efi_selftest_bitblt.c | 28 static struct efi_gop_pixel *bitmap; variable 88 gop->blt(gop, bitmap, EFI_BLT_BUFFER_TO_VIDEO, sx, 0, dx, DEPTH, in notify() 128 WIDTH * HEIGHT, (void **)&bitmap); in setup() 191 bitmap[WIDTH * y + x] = pix; in setup() 207 if (bitmap) { in teardown() 208 ret = boottime->free_pool(bitmap); in teardown() 251 ret = gop->blt(gop, bitmap, EFI_BLT_VIDEO_FILL, 0, 0, 0, 0, in execute() 259 ret = gop->blt(gop, bitmap, EFI_BLT_BUFFER_TO_VIDEO, 0, 0, 0, DEPTH, in execute() 267 ret = gop->blt(gop, bitmap, EFI_BLT_VIDEO_TO_VIDEO, in execute() 276 ret = gop->blt(gop, bitmap, EFI_BLT_VIDEO_TO_BLT_BUFFER, in execute()
|
/u-boot/include/linux/ |
A D | bitmap.h | 34 __bitmap_weight(const unsigned long *bitmap, unsigned int bits) in __bitmap_weight() argument 40 w += hweight_long(bitmap[k]); in __bitmap_weight() 43 w += hweight_long(bitmap[k] & BITMAP_LAST_WORD_MASK(bits)); in __bitmap_weight()
|
/u-boot/examples/api/ |
A D | glue.h | 64 int ub_display_draw_bitmap(ulong bitmap, int x, int y);
|
A D | glue.c | 406 int ub_display_draw_bitmap(ulong bitmap, int x, int y) in ub_display_draw_bitmap() argument 410 if (!syscall(API_DISPLAY_DRAW_BITMAP, &err, bitmap, x, y)) in ub_display_draw_bitmap()
|
/u-boot/arch/x86/include/asm/ |
A D | pirq_routing.h | 32 u16 bitmap; /* Available IRQs */ member
|
/u-boot/drivers/usb/mtu3/ |
A D | mtu3_core.c | 25 fz_bit = find_first_zero_bit(fifo->bitmap, fifo->limit); in ep_fifo_alloc() 31 generic_set_bit(fz_bit, fifo->bitmap); in ep_fifo_alloc() 49 generic_clear_bit(bit, fifo->bitmap); in ep_fifo_free() 451 bitmap_zero(tx_fifo->bitmap, MTU3_FIFO_BIT_SIZE); in get_ep_fifo_config() 457 bitmap_zero(rx_fifo->bitmap, MTU3_FIFO_BIT_SIZE); in get_ep_fifo_config() 464 bitmap_zero(tx_fifo->bitmap, MTU3_FIFO_BIT_SIZE); in get_ep_fifo_config() 470 bitmap_zero(rx_fifo->bitmap, MTU3_FIFO_BIT_SIZE); in get_ep_fifo_config()
|
A D | mtu3.h | 192 DECLARE_BITMAP(bitmap, MTU3_FIFO_BIT_SIZE);
|
/u-boot/common/ |
A D | usb_hub.c | 617 unsigned char *bitmap; in usb_hub_configure() local 653 bitmap = (unsigned char *)&hub->desc.u.hs.DeviceRemovable[0]; in usb_hub_configure() 655 memset(bitmap, 0xff, (USB_MAXCHILDREN+1+7)/8); in usb_hub_configure() 656 bitmap = (unsigned char *)&hub->desc.u.hs.PortPowerCtrlMask[0]; in usb_hub_configure() 657 memset(bitmap, 0xff, (USB_MAXCHILDREN+1+7)/8); /* PowerMask = 1B */ in usb_hub_configure()
|
/u-boot/drivers/soc/ti/ |
A D | k3-navss-ringacc.c | 27 #define set_bit(bit, bitmap) __set_bit(bit, bitmap) argument 28 #define clear_bit(bit, bitmap) __clear_bit(bit, bitmap) argument
|
/u-boot/arch/x86/cpu/ |
A D | irq.c | 145 slot->irq[pin - 1].bitmap = priv->irq_mask; in fill_irq_info()
|
/u-boot/doc/develop/ |
A D | commands.rst | 97 A bitmap which may contain the following bits
|
/u-boot/drivers/mtd/nand/raw/ |
A D | nand_base.c | 1652 const unsigned char *bitmap = buf; in nand_check_erased_buf() local 1656 for (; len && ((uintptr_t)bitmap) % sizeof(long); in nand_check_erased_buf() 1657 len--, bitmap++) { in nand_check_erased_buf() 1658 weight = hweight8(*bitmap); in nand_check_erased_buf() 1664 for (; len >= 4; len -= 4, bitmap += 4) { in nand_check_erased_buf() 1665 weight = hweight32(*((u32 *)bitmap)); in nand_check_erased_buf() 1671 for (; len > 0; len--, bitmap++) { in nand_check_erased_buf() 1672 weight = hweight8(*bitmap); in nand_check_erased_buf()
|
/u-boot/drivers/video/ |
A D | stb_truetype.h | 293 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()
|
A D | Kconfig | 12 a bitmap display of various sizes and depths which can be drawn on 159 needing to provide a bitmap for each font and size that is needed. 637 a normal bitmap display and can display images as well as text. 695 output on a bitmap display from an in-memory frame buffer.
|
/u-boot/tools/ |
A D | ifwitool.c | 210 uint8_t bitmap[16]; member
|