Searched refs:rgb (Results 1 - 6 of 6) sorted by relevance

/freebsd-11-stable/sys/dev/vt/colors/
H A Dvt_termcolors.c76 vt_parse_rgb_triplet(const char *rgb, unsigned char *r, argument
83 ptr = rgb;
148 char rgb[32]; local
154 "kern.vt.color.%d.rgb", i);
155 if (TUNABLE_STR_FETCH(tunable, rgb, sizeof(rgb))) {
156 if (vt_parse_rgb_triplet(rgb, &r, &g, &b) == 0) {
/freebsd-11-stable/sys/arm/ti/am335x/
H A Dam335x_lcd_syscons.c680 uint16_t rgb; local
717 rgb = (am335x_syscons_palette[color].r >> 3) << 11;
718 rgb |= (am335x_syscons_palette[color].g >> 2) << 5;
719 rgb |= (am335x_syscons_palette[color].b >> 3);
720 addr[2*j] = rgb & 0xff;
721 addr[2*j + 1] = (rgb >> 8) & 0xff;
/freebsd-11-stable/sys/arm/versatile/
H A Dversatile_clcd.c860 uint16_t rgb; local
889 rgb = (versatilefb_palette[color].r >> 3) << 11;
890 rgb |= (versatilefb_palette[color].g >> 2) << 5;
891 rgb |= (versatilefb_palette[color].b >> 3);
892 addr[2*j] = rgb & 0xff;
893 addr[2*j + 1] = (rgb >> 8) & 0xff;
/freebsd-11-stable/sys/arm/broadcom/bcm2835/
H A Dbcm2835_fb.c769 uint16_t rgb; local
817 rgb = (bcmfb_palette[color].r >> 3) << 11;
818 rgb |= (bcmfb_palette[color].g >> 2) << 5;
819 rgb |= (bcmfb_palette[color].b >> 3);
820 addr[bytes * j] = rgb & 0xff;
821 addr[bytes * j + 1] = (rgb >> 8) & 0xff;
/freebsd-11-stable/contrib/groff/src/roff/troff/
H A Dinput.cpp1224 warning(WARN_COLOR, "missing rgb color values");
1231 warning(WARN_COLOR, "expecting rgb color definition not `%1'", s);
1241 unsigned int r = get_color_element("rgb color", "red component");
1242 unsigned int g = get_color_element("rgb color", "green component");
1243 unsigned int b = get_color_element("rgb color", "blue component");
1363 if (strcmp(style.contents(), "rgb") == 0)
1375 "unknown color space `%1'; use rgb, cmyk, gray or cmy",
/freebsd-11-stable/contrib/amd/doc/
H A Dtexinfo.tex1139 % except using rgb instead of cmyk; the latter is said to render as a

Completed in 132 milliseconds