Home
last modified time | relevance | path

Searched refs:bmp_hdr (Results 1 – 2 of 2) sorted by relevance

/OK3568_Linux_fs/u-boot/tools/rockchip/
H A Dbmp2gray16.c155 struct bmp_header bmp_hdr; in get_logo_resolution() local
169 if (size != fread(&bmp_hdr, 1, size, file)) { in get_logo_resolution()
174 if (!(bmp_hdr.signature[0] == 'B' && in get_logo_resolution()
175 bmp_hdr.signature[1] == 'M')) { in get_logo_resolution()
180 *logo_width = bmp_hdr.width; in get_logo_resolution()
181 *logo_height = bmp_hdr.height; in get_logo_resolution()
203 struct bmp_header *bmp_hdr; in convert_one_image() local
237 bmp_hdr = &bmp->hdr; in convert_one_image()
238 if (!(bmp_hdr->signature[0] == 'B' && in convert_one_image()
239 bmp_hdr->signature[1] == 'M')) { in convert_one_image()
[all …]
/OK3568_Linux_fs/u-boot/common/
H A Dsplash_source.c87 struct bmp_header *bmp_hdr; in splash_load_raw() local
98 bmp_hdr = (struct bmp_header *)bmp_load_addr; in splash_load_raw()
99 bmp_size = le32_to_cpu(bmp_hdr->file_size); in splash_load_raw()