Symbol: cmap
stand/common/gfx_fb.c
149
uint32_t cmap[NCMAP];
stand/common/gfx_fb.h
165
extern uint32_t cmap[NCMAP];
stand/efi/libefi/efi_console.c
930
(void) generate_cons_palette(cmap, COLOR_FORMAT_RGB,
stand/i386/libi386/vbe.c
1083
(cmap[i] & gfx_state.tg_fb.fb_mask_red) >>
stand/i386/libi386/vbe.c
1085
(cmap[i] & gfx_state.tg_fb.fb_mask_green) >>
stand/i386/libi386/vbe.c
1087
(cmap[i] & gfx_state.tg_fb.fb_mask_blue) >>
stand/i386/libi386/vbe.c
1088
ffs(gfx_state.tg_fb.fb_mask_blue) - 1, cmap[i]);
stand/i386/libi386/vidconsole.c
335
attr = (cmap[bg & 0xf] << 4) | cmap[fg & 0xf];
stand/i386/libi386/vidconsole.c
947
(void) generate_cons_palette(cmap, format,
sys/dev/drm2/drm_fb_helper.c
635
int drm_fb_helper_setcmap(struct fb_cmap *cmap, struct fb_info *info)
sys/dev/drm2/drm_fb_helper.c
648
red = cmap->red;
sys/dev/drm2/drm_fb_helper.c
649
green = cmap->green;
sys/dev/drm2/drm_fb_helper.c
650
blue = cmap->blue;
sys/dev/drm2/drm_fb_helper.c
651
transp = cmap->transp;
sys/dev/drm2/drm_fb_helper.c
652
start = cmap->start;
sys/dev/drm2/drm_fb_helper.c
654
for (j = 0; j < cmap->len; j++) {
sys/dev/drm2/drm_fb_helper.h
115
int drm_fb_helper_setcmap(struct fb_cmap *cmap, struct fb_info *info);
sys/dev/isp/isp_pci.c
1064
for (cmap = 0; cmap < isp->isp_nchan; cmap++) {
sys/dev/isp/isp_pci.c
1065
struct isp_fc *fc = ISP_FC_PC(isp, cmap);
sys/dev/isp/isp_pci.c
1069
FCPARAM(isp, cmap)->isp_scratch = base;
sys/dev/isp/isp_pci.c
1076
FCPARAM(isp, cmap)->isp_scratch = NULL;
sys/dev/isp/isp_pci.c
1079
FCPARAM(isp, cmap)->isp_scdma = im.maddr;
sys/dev/isp/isp_pci.c
899
int i, error, cmap;
usr.bin/tr/cmap.c
121
cmap_lookup_hard(struct cmap *cm, wint_t ch)
usr.bin/tr/cmap.c
137
cmap_cache(struct cmap *cm)
usr.bin/tr/cmap.c
154
cmap_default(struct cmap *cm, wint_t def)
usr.bin/tr/cmap.c
48
struct cmap *
usr.bin/tr/cmap.c
51
struct cmap *cm;
usr.bin/tr/cmap.c
68
cmap_add(struct cmap *cm, wint_t from, wint_t to)
usr.bin/tr/cmap.h
54
struct cmap * cmap_alloc(void);
usr.bin/tr/cmap.h
55
bool cmap_add(struct cmap *, wint_t, wint_t);
usr.bin/tr/cmap.h
56
wint_t cmap_lookup_hard(struct cmap *, wint_t);
usr.bin/tr/cmap.h
57
void cmap_cache(struct cmap *);
usr.bin/tr/cmap.h
58
wint_t cmap_default(struct cmap *, wint_t);
usr.bin/tr/cmap.h
61
cmap_lookup(struct cmap *cm, wint_t from)
usr.bin/tr/cmap.h
70
cmap_min(struct cmap *cm)
usr.bin/tr/cmap.h
77
cmap_max(struct cmap *cm)
usr.bin/tr/tr.c
62
struct cmap *map;