/freebsd/usr.bin/tr/ |
H A D | cmap.h | 43 struct cmap { struct 54 struct cmap * cmap_alloc(void); argument 55 bool cmap_add(struct cmap *, wint_t, wint_t); 56 wint_t cmap_lookup_hard(struct cmap *, wint_t); 57 void cmap_cache(struct cmap *); 58 wint_t cmap_default(struct cmap *, wint_t); 61 cmap_lookup(struct cmap *cm, wint_t from) in cmap_lookup() 70 cmap_min(struct cmap *cm) in cmap_min() 77 cmap_max(struct cmap *cm) in cmap_max()
|
H A D | cmap.c | 48 struct cmap * 51 struct cmap *cm; in cmap_alloc() 68 cmap_add(struct cmap *cm, wint_t from, wint_t to) in cmap_add() 121 cmap_lookup_hard(struct cmap *cm, wint_t ch) in cmap_lookup_hard() 137 cmap_cache(struct cmap *cm) in cmap_cache() 154 cmap_default(struct cmap *cm, wint_t def) in cmap_default()
|
H A D | Makefile | 5 SRCS= cmap.c cset.c str.c tr.c
|
H A D | tr.c | 62 struct cmap *map; in main()
|
/freebsd/contrib/tcsh/ |
H A D | sh.char.h | 151 # define cmap(c, bits) \ macro 155 # define cmap(c, bits) \ macro 159 # define cmap(c, bits) \ macro 163 #define isglob(c) cmap((c), _GLOB) 164 #define isspc(c) cmap((c), _SP) 165 #define ismeta(c) cmap((c), _META) 166 #define iscmdmeta(c) cmap((c), _CMD) 174 ((isalpha((c)) && !(cmap((c), _PUN))) \ 177 ((isalnum((c)) && !(cmap((c), _PUN))) \ 285 # define Isspace(c) cmap((c), _SP|_NL) [all …]
|
H A D | tw.parse.c | 144 #define tricky(w) (cmap(w, _META | _DOL | _QF | _QB | _ESC | _GLOB) && w != '#') 146 #define tricky_dq(w) (cmap(w, _DOL | _QB)) 175 if (!cmap(qu, _ESC)) { in tenematch() 176 if (cmap(*cp, _QF|_ESC)) { in tenematch() 182 if (qu != '\'' && cmap(*cp, _QB)) { in tenematch() 205 if (cmap(*cp, _ESC) && cp < str_end - 1 && cp[1] == HIST && in tenematch() 216 if (cmap(qu, _ESC)) in tenematch() 606 if (in_sync && !cmap(qu, _ESC) && cmap(*cp, _QF|_ESC)) in insert_meta() 623 if (cmap(w, _ESC | _QF)) in insert_meta() 629 if (cmap(qu, _ESC)) in insert_meta() [all …]
|
H A D | sh.dol.c | 99 if (cmap(*p, _DOL | QUOTES)) { /* $, \, ', ", ` */ in Dfix() 184 if (cmap(c, _SP | _NL | _QF | _QB)) { /* sp \t\n'"` */ in Dpack() 186 if (cmap(c, QUOTES)) in Dpack() 329 if (cmap(c, QUOTES)) in DgetC() 936 if (cmap(c, QUOTES)) in Dtestq()
|
H A D | sh.lex.c | 309 if (cmap(c, _META | _ESC)) in word() 407 else if (cmap(c, _META | _QF | _QB | _ESC)) { in word() 419 else if (cmap(c, _QF | _QB)) { /* '"` */ in word() 449 if (cmap(c, _META | _QF | _QB)) in getC1() 1219 while (!cmap(c, _ESC | _META | _QF | _QB) && !any("^*-%${}:#", c)) { in gethent()
|
H A D | sh.misc.c | 499 if (cmap(*s, _META | _DOL | _QF | _QB | _ESC | _GLOB)) in quote_meta()
|
H A D | complete.tcsh | 822 complete xpdf c/-/"(z g remote raise quit cmap rgb papercolor \
|
/freebsd/sys/dev/isp/ |
H A D | isp_pci.c | 899 int i, error, cmap; in isp_pci_mbxdma() local 1064 for (cmap = 0; cmap < isp->isp_nchan; cmap++) { in isp_pci_mbxdma() 1065 struct isp_fc *fc = ISP_FC_PC(isp, cmap); in isp_pci_mbxdma() 1069 FCPARAM(isp, cmap)->isp_scratch = base; in isp_pci_mbxdma() 1076 FCPARAM(isp, cmap)->isp_scratch = NULL; in isp_pci_mbxdma() 1079 FCPARAM(isp, cmap)->isp_scdma = im.maddr; in isp_pci_mbxdma()
|
/freebsd/sys/dev/drm2/ |
H A D | drm_fb_helper.c | 635 int drm_fb_helper_setcmap(struct fb_cmap *cmap, struct fb_info *info) 648 red = cmap->red; 649 green = cmap->green; 650 blue = cmap->blue; 651 transp = cmap->transp; 652 start = cmap->start; 654 for (j = 0; j < cmap->len; j++) {
|
H A D | drm_fb_helper.h | 115 int drm_fb_helper_setcmap(struct fb_cmap *cmap, struct fb_info *info);
|
/freebsd/sys/contrib/device-tree/Bindings/display/ |
H A D | cirrus,clps711x-fb.txt | 14 - cmap-invert : Invert the color levels (Optional).
|
/freebsd/stand/i386/libi386/ |
H A D | vbe.c | 1083 (cmap[i] & gfx_state.tg_fb.fb_mask_red) >> in vbe_print_mode() 1085 (cmap[i] & gfx_state.tg_fb.fb_mask_green) >> in vbe_print_mode() 1087 (cmap[i] & gfx_state.tg_fb.fb_mask_blue) >> in vbe_print_mode() 1088 ffs(gfx_state.tg_fb.fb_mask_blue) - 1, cmap[i]); in vbe_print_mode()
|
H A D | vidconsole.c | 335 attr = (cmap[bg & 0xf] << 4) | cmap[fg & 0xf]; in vidc_text_printchar() 947 (void) generate_cons_palette(cmap, format, in cons_update_mode()
|
/freebsd/share/doc/smm/02.config/ |
H A D | spell.ok | 111 cmap.h
|
/freebsd/stand/common/ |
H A D | gfx_fb.h | 165 extern uint32_t cmap[NCMAP];
|
H A D | gfx_fb.c | 147 uint32_t cmap[NCMAP]; variable
|
/freebsd/stand/efi/libefi/ |
H A D | efi_console.c | 930 (void) generate_cons_palette(cmap, COLOR_FORMAT_RGB, in cons_update_mode()
|