Lines Matching refs:bmp
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()
199 struct bmp_image *bmp = map_sysmem(bmp_image, 0); in video_bmp_display() local
208 if (!bmp || !(bmp->header.signature[0] == 'B' && in video_bmp_display()
209 bmp->header.signature[1] == 'M')) { in video_bmp_display()
215 width = get_unaligned_le32(&bmp->header.width); in video_bmp_display()
216 height = get_unaligned_le32(&bmp->header.height); in video_bmp_display()
217 bmp_bpix = get_unaligned_le16(&bmp->header.bit_count); in video_bmp_display()
218 hdr_size = get_unaligned_le16(&bmp->header.size); in video_bmp_display()
220 palette = (void *)bmp + 14 + hdr_size; in video_bmp_display()
241 bpix, get_unaligned_le16(&bmp->header.bit_count)); in video_bmp_display()
263 bmap = (uchar *)bmp + get_unaligned_le32(&bmp->header.data_offset); in video_bmp_display()
272 u32 compression = get_unaligned_le32(&bmp->header.compression); in video_bmp_display()
280 video_display_rle8_bitmap(dev, bmp, cmap_base, fb, x, in video_bmp_display()