HelenOS sources

BLUE              463 boot/genarch/src/ofw.c 			    255 - i, CLIP(BLUE(i) * 37), GREEN(i) * 85, CLIP(RED(i) * 37));
BLUE               40 contrib/tools/gen_vga323.c 		printf("\t.byte 0x%02x, 0x%02x, 0x%02x, 0x00\n", BLUE(i) * 9, GREEN(i) * 21, RED(i) * 9);
BLUE              149 kernel/genarch/src/fb/fb.c 	    (RED(rgb, 8) << 16) | (GREEN(rgb, 8) << 8) | (BLUE(rgb, 8)));
BLUE              155 kernel/genarch/src/fb/fb.c 	    (BLUE(rgb, 8) << 16) | (GREEN(rgb, 8) << 8) | (RED(rgb, 8)));
BLUE              161 kernel/genarch/src/fb/fb.c 	    (GREEN(rgb,	8) << 16) | (BLUE(rgb, 8) << 8) | 0);
BLUE              166 kernel/genarch/src/fb/fb.c 	*((uint32_t *) dst) = host2uint32_t_be((BLUE(rgb, 8) << 24) |
BLUE              174 kernel/genarch/src/fb/fb.c 	((uint8_t *) dst)[2] = BLUE(rgb, 8);
BLUE              179 kernel/genarch/src/fb/fb.c 	((uint8_t *) dst)[0] = BLUE(rgb, 8);
BLUE              187 kernel/genarch/src/fb/fb.c 	    GREEN(rgb, 5) << 5 | BLUE(rgb, 5));
BLUE              193 kernel/genarch/src/fb/fb.c 	    GREEN(rgb, 5) << 5 | BLUE(rgb, 5));
BLUE              199 kernel/genarch/src/fb/fb.c 	    GREEN(rgb, 6) << 5 | BLUE(rgb, 5));
BLUE              205 kernel/genarch/src/fb/fb.c 	    GREEN(rgb, 6) << 5 | BLUE(rgb, 5));
BLUE              228 kernel/genarch/src/fb/fb.c 	    ~((RED(rgb, 3) << 5) | (GREEN(rgb, 2) << 3) | BLUE(rgb, 3));
BLUE               76 uspace/drv/hid/usbhid/blink1/blink1.c 	report.arg2 = BLUE(pixel);
BLUE               49 uspace/lib/pixconv/pixconv.c 	    (ALPHA(pix) << 24) | (RED(pix) << 16) | (GREEN(pix) << 8) | (BLUE(pix)));
BLUE               55 uspace/lib/pixconv/pixconv.c 	    (ALPHA(pix) << 24) | (BLUE(pix) << 16) | (GREEN(pix) << 8) | (RED(pix)));
BLUE               61 uspace/lib/pixconv/pixconv.c 	    (RED(pix) << 24) | (GREEN(pix) << 16) | (BLUE(pix) << 8) | (ALPHA(pix)));
BLUE               67 uspace/lib/pixconv/pixconv.c 	    (BLUE(pix) << 24) | (GREEN(pix) << 16) | (RED(pix) << 8) | (ALPHA(pix)));
BLUE               73 uspace/lib/pixconv/pixconv.c 	    (RED(pix) << 16) | (GREEN(pix) << 8) | (BLUE(pix)));
BLUE               79 uspace/lib/pixconv/pixconv.c 	    (BLUE(pix) << 16) | (GREEN(pix) << 8) | (RED(pix)));
BLUE               85 uspace/lib/pixconv/pixconv.c 	    (RED(pix) << 24) | (GREEN(pix) << 16) | (BLUE(pix) << 8));
BLUE               91 uspace/lib/pixconv/pixconv.c 	    (BLUE(pix) << 24) | (GREEN(pix) << 16) | (RED(pix) << 8));
BLUE               98 uspace/lib/pixconv/pixconv.c 	((uint8_t *) dst)[2] = BLUE(pix);
BLUE              103 uspace/lib/pixconv/pixconv.c 	((uint8_t *) dst)[0] = BLUE(pix);
BLUE              111 uspace/lib/pixconv/pixconv.c 	    (NARROW(RED(pix), 5) << 10) | (NARROW(GREEN(pix), 5) << 5) | (NARROW(BLUE(pix), 5)));
BLUE              117 uspace/lib/pixconv/pixconv.c 	    (NARROW(RED(pix), 5) << 10) | (NARROW(GREEN(pix), 5) << 5) | (NARROW(BLUE(pix), 5)));
BLUE              123 uspace/lib/pixconv/pixconv.c 	    (NARROW(RED(pix), 5) << 11) | (NARROW(GREEN(pix), 6) << 5) | (NARROW(BLUE(pix), 5)));
BLUE              129 uspace/lib/pixconv/pixconv.c 	    (NARROW(RED(pix), 5) << 11) | (NARROW(GREEN(pix), 6) << 5) | (NARROW(BLUE(pix), 5)));
BLUE              135 uspace/lib/pixconv/pixconv.c 	    ~((NARROW(RED(pix), 3) << 5) | (NARROW(GREEN(pix), 2) << 3) | NARROW(BLUE(pix), 3));
BLUE              142 uspace/lib/pixconv/pixconv.c 	uint32_t blue = BLUE(pix) * 1920103;
BLUE               95 uspace/srv/hid/output/port/ega.c 		    ((BLUE(attrs.val.rgb.fgcolor) >= 0x80) ? 0x10 : 0) |
BLUE               98 uspace/srv/hid/output/port/ega.c 		    ((BLUE(attrs.val.rgb.bgcolor) >= 0x80) ? 0x01 : 0);
BLUE              239 uspace/srv/hid/rfb/rfb.c 		    BLUE(rfb->palette[i]) == BLUE(pixel)) {
BLUE              247 uspace/srv/hid/rfb/rfb.c 		    BLUE(pixel));
BLUE              263 uspace/srv/hid/rfb/rfb.c 	pix |= rfb_scale_channel(BLUE(pixel), pf->b_max) << pf->b_shift;
BLUE              332 uspace/srv/hid/rfb/rfb.c 		entries[i].blue = 65535 * BLUE(rfb->palette[i]) / 255;
HelenOS homepage, sources at GitHub