| /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/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/api/ |
| A D | api_display.c | 28 int display_draw_bitmap(ulong bitmap, int x, int y) in display_draw_bitmap() argument 30 if (!bitmap) 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/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 | 401 int ub_display_draw_bitmap(ulong bitmap, int x, int y) in ub_display_draw_bitmap() argument 405 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/arch/arm/mach-apple/ |
| A D | rtkit.c | 161 u32 bitmap, base; in apple_rtkit_boot() local 230 bitmap = FIELD_GET(APPLE_RTKIT_MGMT_EPMAP_BITMAP, msg.msg0); in apple_rtkit_boot() 233 if (bitmap & (1U << i)) in apple_rtkit_boot()
|
| /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 | 616 unsigned char *bitmap; in usb_hub_configure() local 652 bitmap = (unsigned char *)&hub->desc.u.hs.DeviceRemovable[0]; in usb_hub_configure() 654 memset(bitmap, 0xff, (USB_MAXCHILDREN+1+7)/8); in usb_hub_configure() 655 bitmap = (unsigned char *)&hub->desc.u.hs.PortPowerCtrlMask[0]; in usb_hub_configure() 656 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 | 28 #define set_bit(bit, bitmap) __set_bit(bit, bitmap) argument 29 #define clear_bit(bit, bitmap) __clear_bit(bit, bitmap) argument
|
| /u-boot/drivers/video/ |
| A D | Kconfig | 12 a bitmap display of various sizes and depths which can be drawn on 23 Provides character bitmap data in header file. 31 Provides character bitmap data in header file. 38 Provides character bitmap data in header file. 45 Provides character bitmap data in header file. 185 needing to provide a bitmap for each font and size that is needed. 703 a normal bitmap display and can display images as well as text. 934 hex "Maximum size of the bitmap logo in bytes" 939 read the size from the bitmap header. 1120 hex "Maximum size of the bitmap logo in bytes at SPL" [all …]
|
| 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]); 758 STBTT_DEF void stbtt_FreeBitmap(unsigned char *bitmap, void *userdata); 2424 STBTT_DEF void stbtt_FreeBitmap(unsigned char *bitmap, void *userdata) in stbtt_FreeBitmap() argument 2426 STBTT_free(bitmap, userdata); in stbtt_FreeBitmap()
|
| /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 | 1670 const unsigned char *bitmap = buf; in nand_check_erased_buf() local 1674 for (; len && ((uintptr_t)bitmap) % sizeof(long); in nand_check_erased_buf() 1675 len--, bitmap++) { in nand_check_erased_buf() 1676 weight = hweight8(*bitmap); in nand_check_erased_buf() 1682 for (; len >= 4; len -= 4, bitmap += 4) { in nand_check_erased_buf() 1683 weight = hweight32(*((u32 *)bitmap)); in nand_check_erased_buf() 1689 for (; len > 0; len--, bitmap++) { in nand_check_erased_buf() 1690 weight = hweight8(*bitmap); in nand_check_erased_buf()
|
| /u-boot/tools/ |
| A D | ifwitool.c | 210 uint8_t bitmap[16]; member
|