Searched refs:cmap (Results 1 – 9 of 9) sorted by relevance
/u-boot/drivers/video/ |
A D | video_bmp.c | 22 static void draw_unencoded_bitmap(ushort **fbp, uchar *bmap, ushort *cmap, in draw_unencoded_bitmap() argument 26 *(*fbp)++ = cmap[*bmap++]; in draw_unencoded_bitmap() 43 struct bmp_image *bmp, ushort *cmap, in video_display_rle8_bitmap() argument 95 bmap, cmap, cnt); in video_display_rle8_bitmap() 120 cmap[bmap[1]], cnt); in video_display_rle8_bitmap() 177 ushort *cmap = priv->cmap; in video_set_cmap() local 181 *cmap = ((cte->red << 8) & 0xf800) | in video_set_cmap() 184 cmap++; in video_set_cmap() 275 cmap_base = priv->cmap; in video_bmp_display()
|
A D | atmel_lcdfb.c | 77 uint *cmap = (uint *)configuration_get_cmap(); in lcd_logo_set_cmap() local 90 *(cmap + BMP_LOGO_OFFSET) = lut_entry; in lcd_logo_set_cmap() 91 cmap++; in lcd_logo_set_cmap()
|
A D | video-uclass.c | 311 priv->cmap = calloc(256, sizeof(ushort)); in video_pre_probe() 312 if (!priv->cmap) in video_pre_probe() 322 free(priv->cmap); in video_pre_remove()
|
A D | stb_truetype.h | 1024 stbtt_uint32 cmap, t; in stbtt_InitFont() local 1030 cmap = stbtt__find_table(data, fontstart, "cmap"); // required in stbtt_InitFont() 1037 if (!cmap || !info->loca || !info->head || !info->glyf || !info->hhea || !info->hmtx) in stbtt_InitFont() 1049 numTables = ttUSHORT(data + cmap + 2); in stbtt_InitFont() 1052 stbtt_uint32 encoding_record = cmap + 4 + 8 * i; in stbtt_InitFont() 1060 info->index_map = cmap + ttULONG(data+encoding_record+4); in stbtt_InitFont() 1067 info->index_map = cmap + ttULONG(data+encoding_record+4); in stbtt_InitFont()
|
/u-boot/common/ |
A D | lcd.c | 331 ushort *cmap = configuration_get_cmap(); in lcd_logo_set_cmap() local 334 *cmap++ = bmp_logo_palette[i]; in lcd_logo_set_cmap() 408 static void draw_unencoded_bitmap(ushort **fbp, uchar *bmap, ushort *cmap, in draw_unencoded_bitmap() argument 412 *(*fbp)++ = cmap[*bmap++]; in draw_unencoded_bitmap() 444 static void lcd_display_rle8_bitmap(struct bmp_image *bmp, ushort *cmap, in lcd_display_rle8_bitmap() argument 496 bmap, cmap, cnt); in lcd_display_rle8_bitmap() 521 cmap[bmap[1]], cnt); in lcd_display_rle8_bitmap() 548 ushort *cmap = configuration_get_cmap(); in lcd_set_cmap() local 552 *cmap = (((cte.red) << 8) & 0xf800) | in lcd_set_cmap() 555 cmap++; in lcd_set_cmap()
|
/u-boot/include/linux/ |
A D | fb.h | 230 struct fb_cmap cmap; /* color map info */ member 355 struct fb_cmap_user cmap; /* color map info */ member 502 struct fb_cmap cmap; /* Current cmap */ member 589 extern int fb_alloc_cmap(struct fb_cmap *cmap, int len, int transp); 590 extern void fb_dealloc_cmap(struct fb_cmap *cmap); 593 extern int fb_set_cmap(struct fb_cmap *cmap, struct fb_info *fb_info); 594 extern int fb_set_user_cmap(struct fb_cmap_user *cmap, struct fb_info *fb_info);
|
/u-boot/include/ |
A D | lcd.h | 56 ushort *cmap; /* Pointer to the colormap */ member 62 return panel_info.cmap; in configuration_get_cmap()
|
A D | video.h | 112 ushort *cmap; member
|
/u-boot/board/compulab/common/ |
A D | omap3_display.c | 38 .cmap = (ushort *)CMAP_ADDR,
|
Completed in 28 milliseconds