Home
last modified time | relevance | path

Searched refs:cmap_base (Results 1 – 3 of 3) sorted by relevance

/OK3568_Linux_fs/u-boot/drivers/video/drm/
H A Dbmp_helper.c152 uint8_t *cmap_base; in bmpdecoder() local
169 cmap_base = src + sizeof(bmp->header); in bmpdecoder()
183 ushort colreg = ((cmap_base[2] << 8) & 0xf800) | in bmpdecoder()
184 ((cmap_base[1] << 3) & 0x07e0) | in bmpdecoder()
185 ((cmap_base[0] >> 3) & 0x001f) ; in bmpdecoder()
186 cmap_base += 4; in bmpdecoder()
/OK3568_Linux_fs/u-boot/drivers/video/
H A Dvideo_bmp.c196 ushort *cmap_base = NULL; in video_bmp_display() local
270 cmap_base = priv->cmap; in video_bmp_display()
280 video_display_rle8_bitmap(dev, bmp, cmap_base, fb, x, in video_bmp_display()
297 *(uint16_t *)fb = cmap_base[*bmap]; in video_bmp_display()
/OK3568_Linux_fs/u-boot/common/
H A Dlcd.c571 ushort *cmap_base = NULL; in lcd_display_bitmap() local
645 cmap_base = configuration_get_cmap(); in lcd_display_bitmap()
655 lcd_display_rle8_bitmap(bmp, cmap_base, fb, x, y); in lcd_display_bitmap()
674 if (cmap_base) { in lcd_display_bitmap()
675 val = cmap_base[*bmap]; in lcd_display_bitmap()