| /openbmc/u-boot/cmd/ |
| H A D | bmp.c | 44 struct bmp_image *bmp; in gunzip_bmp() local 57 bmp = dst; in gunzip_bmp() 60 bmp = (struct bmp_image *)((((uintptr_t)dst + 1) & ~3) + 2); in gunzip_bmp() 62 if (gunzip(bmp, CONFIG_SYS_VIDEO_LOGO_MAX_SIZE, map_sysmem(addr, 0), in gunzip_bmp() 74 if (!((bmp->header.signature[0] == 'B') && in gunzip_bmp() 75 (bmp->header.signature[1] == 'M'))) { in gunzip_bmp() 83 return bmp; in gunzip_bmp() 181 bmp, 5, 1, do_bmp, 199 struct bmp_image *bmp = (struct bmp_image *)map_sysmem(addr, 0); in bmp_info() local 203 if (!((bmp->header.signature[0]=='B') && in bmp_info() [all …]
|
| H A D | Makefile | 25 obj-$(CONFIG_CMD_BMP) += bmp.o
|
| H A D | Kconfig | 1372 bool "Enable 'bmp' command"
|
| /openbmc/u-boot/drivers/video/ |
| H A D | video_bmp.c | 42 struct bmp_image *bmp, ushort *cmap, in video_display_rle8_bitmap() argument 53 width = get_unaligned_le32(&bmp->header.width); in video_display_rle8_bitmap() 54 height = get_unaligned_le32(&bmp->header.height); in video_display_rle8_bitmap() 55 bmap = (uchar *)bmp + get_unaligned_le32(&bmp->header.data_offset); in video_display_rle8_bitmap() 197 struct bmp_image *bmp = map_sysmem(bmp_image, 0); in video_bmp_display() local 206 if (!bmp || !(bmp->header.signature[0] == 'B' && in video_bmp_display() 207 bmp->header.signature[1] == 'M')) { in video_bmp_display() 213 width = get_unaligned_le32(&bmp->header.width); in video_bmp_display() 214 height = get_unaligned_le32(&bmp->header.height); in video_bmp_display() 215 bmp_bpix = get_unaligned_le16(&bmp->header.bit_count); in video_bmp_display() [all …]
|
| H A D | bus_vcxk.c | 360 struct bmp_image *bmp; in vcxk_display_bitmap() local 371 bmp = (struct bmp_image *)addr; in vcxk_display_bitmap() 372 if ((bmp->header.signature[0] == 'B') && in vcxk_display_bitmap() 373 (bmp->header.signature[1] == 'M')) { in vcxk_display_bitmap() 374 width = le32_to_cpu(bmp->header.width); in vcxk_display_bitmap() 375 height = le32_to_cpu(bmp->header.height); in vcxk_display_bitmap() 376 bpp = le16_to_cpu(bmp->header.bit_count); in vcxk_display_bitmap() 378 dataptr = (unsigned char *) bmp + in vcxk_display_bitmap() 379 le32_to_cpu(bmp->header.data_offset); in vcxk_display_bitmap() 404 printf("Error: no valid bmp at %lx\n", (ulong) bmp); in vcxk_display_bitmap()
|
| H A D | cfb_console.c | 1317 struct bmp_image *bmp = (struct bmp_image *)bmp_image; in video_display_bitmap() local 1332 if (!((bmp->header.signature[0] == 'B') && in video_display_bitmap() 1333 (bmp->header.signature[1] == 'M'))) { in video_display_bitmap() 1365 bmp = (struct bmp_image *)(dst+2); in video_display_bitmap() 1367 if (!((bmp->header.signature[0] == 'B') && in video_display_bitmap() 1368 (bmp->header.signature[1] == 'M'))) { in video_display_bitmap() 1380 width = le32_to_cpu(bmp->header.width); in video_display_bitmap() 1381 height = le32_to_cpu(bmp->header.height); in video_display_bitmap() 1382 bpp = le16_to_cpu(bmp->header.bit_count); in video_display_bitmap() 1383 colors = le32_to_cpu(bmp->header.colors_used); in video_display_bitmap() [all …]
|
| H A D | atmel_lcdfb.c | 103 void lcd_set_cmap(struct bmp_image *bmp, unsigned colors) in lcd_set_cmap() argument 108 struct bmp_color_table_entry cte = bmp->color_table[i]; in lcd_set_cmap()
|
| /openbmc/u-boot/common/ |
| H A D | lcd.c | 444 static void lcd_display_rle8_bitmap(struct bmp_image *bmp, ushort *cmap, in lcd_display_rle8_bitmap() argument 453 width = get_unaligned_le32(&bmp->header.width); in lcd_display_rle8_bitmap() 454 height = get_unaligned_le32(&bmp->header.height); in lcd_display_rle8_bitmap() 455 bmap = (uchar *)bmp + get_unaligned_le32(&bmp->header.data_offset); in lcd_display_rle8_bitmap() 544 __weak void lcd_set_cmap(struct bmp_image *bmp, unsigned colors) in lcd_set_cmap() argument 551 cte = bmp->color_table[i]; in lcd_set_cmap() 564 struct bmp_image *bmp = (struct bmp_image *)map_sysmem(bmp_image, 0); in lcd_display_bitmap() local 573 if (!bmp || !(bmp->header.signature[0] == 'B' && in lcd_display_bitmap() 574 bmp->header.signature[1] == 'M')) { in lcd_display_bitmap() 580 palette = bmp->color_table; in lcd_display_bitmap() [all …]
|
| /openbmc/qemu/ui/icons/ |
| H A D | meson.build | 8 install_data('qemu_32x32.bmp', 9 rename: 'qemu.bmp',
|
| H A D | Makefile | 13 convert qemu_32x32.png qemu_32x32.bmp
|
| /openbmc/u-boot/tools/ |
| H A D | Makefile | 237 LOGO_BMP= $(srctree)/$(src)/logos/denx.bmp 240 ifneq ($(wildcard $(srctree)/$(src)/logos/$(BOARD).bmp),) 241 LOGO_BMP= $(srctree)/$(src)/logos/$(BOARD).bmp 243 ifneq ($(wildcard $(srctree)/$(src)/logos/$(VENDOR).bmp),) 244 LOGO_BMP= $(srctree)/$(src)/logos/$(VENDOR).bmp
|
| H A D | bmp_logo.c | 77 bitmap_t bmp; in main() local 78 bitmap_t *b = &bmp; in main()
|
| /openbmc/qemu/ |
| H A D | qemu.nsi | 74 ;!define MUI_HEADERIMAGE "qemu-nsis.bmp" 75 ; !define MUI_SPECIALBITMAP "qemu.bmp" 78 !define MUI_WELCOMEFINISHPAGE_BITMAP "${SRCDIR}\pc-bios\qemu-nsis.bmp" 79 ; !define MUI_HEADERIMAGE_BITMAP "qemu-install.bmp" 80 ; !define MUI_HEADERIMAGE_UNBITMAP "qemu-uninstall.bmp" 204 Delete "$INSTDIR\*.bmp"
|
| /openbmc/openbmc/meta-openembedded/meta-gnome/recipes-gimp/gimp/ |
| H A D | gimp_3.0.4.bb | 130 sed -i -e "s|${B}||" ${B}/plug-ins/file-bmp/huffman.h
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/fbida/files/ |
| H A D | 0002-meson.build-add-features-options-for-png-gif-tiff-we.patch | 52 read_srcs = [ 'readers.c', 'rd/read-ppm.c', 'rd/read-bmp.c',
|
| /openbmc/qemu/contrib/gitdm/ |
| H A D | filetypes.txt | 134 filetype blobs \.bmp$
|
| /openbmc/openbmc/meta-arm/meta-arm-bsp/recipes-bsp/uefi/files/ |
| H A D | 0001-BootLogoLib-align-logo-coords-to-be-even.patch | 29 MdeModulePkg/Logo/Logo.bmp | Bin 12446 -> 34010 bytes 47 diff --git a/MdeModulePkg/Logo/Logo.bmp b/MdeModulePkg/Logo/Logo.bmp
|
| /openbmc/u-boot/ |
| H A D | Kconfig | 195 value, has more than few MiB, e.g. when uses bzip2 or bmp logo.
|
| H A D | README | 1334 splashscreen support or the bmp command. 1340 bmp command.
|
| /openbmc/ |
| D | opengrok1.0.log | [all...] |
| D | opengrok2.0.log | [all...] |
| /openbmc/openbmc-tools/rootfs_size/ |
| H A D | results.txt | 1515 0: /usr/share/mime/image/bmp.xml
|
| /openbmc/openbmc/poky/meta/lib/oeqa/files/ |
| H A D | buildhistory_filelist2.txt | 8811 -rw-r--r-- root root 3325 ./usr/share/mime/image/bmp.xml
|
| H A D | buildhistory_filelist1.txt | 8808 -rw-r--r-- root root 3325 ./usr/share/mime/image/bmp.xml
|