Home
last modified time | relevance | path

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

/u-boot/arch/x86/lib/
A Dpirq_routing.c17 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 Defi_selftest_bitblt.c28 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 Dapi_display.c28 int display_draw_bitmap(ulong bitmap, int x, int y) in display_draw_bitmap() argument
30 if (!bitmap) in display_draw_bitmap()
A Dapi_private.h32 int display_draw_bitmap(ulong bitmap, int x, int y);
A Dapi.c583 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 Dbitmap.h34 __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 Dglue.h64 int ub_display_draw_bitmap(ulong bitmap, int x, int y);
A Dglue.c401 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 Dpirq_routing.h32 u16 bitmap; /* Available IRQs */ member
/u-boot/arch/arm/mach-apple/
A Drtkit.c161 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 Dmtu3_core.c25 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 Dmtu3.h192 DECLARE_BITMAP(bitmap, MTU3_FIFO_BIT_SIZE);
/u-boot/common/
A Dusb_hub.c616 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 Dk3-navss-ringacc.c28 #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 DKconfig12 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 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]);
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 Dirq.c145 slot->irq[pin - 1].bitmap = priv->irq_mask; in fill_irq_info()
/u-boot/doc/develop/
A Dcommands.rst97 A bitmap which may contain the following bits
/u-boot/drivers/mtd/nand/raw/
A Dnand_base.c1670 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 Difwitool.c210 uint8_t bitmap[16]; member

Completed in 61 milliseconds