Searched refs:colour (Results 1 - 9 of 9) sorted by relevance
/vbox/src/VBox/Devices/PC/ipxe/src/hci/mucurses/ |
H A D | colour.c | 15 * Identify the RGB components of a given colour value 17 * @v colour colour value 23 int colour_content ( short colour, short *red, short *green, short *blue ) { argument 24 *red = ( ( colour & COLOUR_RED ) ? 1 : 0 ); 25 *green = ( ( colour & COLOUR_GREEN ) ? 1 : 0 ); 26 *blue = ( ( colour & COLOUR_BLUE ) ? 1 : 0 ); 31 * Initialise colour pair 33 * @v pair colour pair number 34 * @v fcol foreground colour [all...] |
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/core/ |
H A D | runtime.c | 79 #define colour &cmdline_image macro 99 DBGC ( colour, "RUNTIME stripping \"%s\"\n", strip ); 102 DBGC ( colour, "RUNTIME stripping \"%s\"\n", strip ); 120 DBGC ( colour, "RUNTIME found no command line\n" ); 129 DBGC ( colour, "RUNTIME could not allocate %zd bytes for " 136 DBGC ( colour, "RUNTIME found command line \"%s\" at %08x\n", 147 DBGC ( colour, "RUNTIME using command line \"%s\"\n", cmdline ); 154 DBGC ( colour, "RUNTIME could not register command " 182 DBGC ( colour, "RUNTIME found no initrd\n" ); 186 DBGC ( colour, "RUNTIM [all...] |
/vbox/src/VBox/Main/webservice/samples/php/ |
H A D | clienttest.php | 79 $colour = imagecolorallocate($image, $red, $green, $blue); variable 81 imagesetpixel($image, $width, $height, $colour);
|
/vbox/src/VBox/RDP/client-1.8.3/ |
H A D | orders.c | 99 /* Read a colour entry */ 101 rdp_in_colour(STREAM s, uint32 * colour) argument 105 *colour = i; 107 *colour |= i << 8; 109 *colour |= i << 16; 154 rdp_in_colour(s, &pen->colour); 330 os->opcode, os->startx, os->starty, os->endx, os->endy, os->pen.colour)); 361 os->colour = (os->colour & 0xffffff00) | i; 367 os->colour [all...] |
H A D | xwin.c | 274 /* colour maps */ 798 #define SPLITCOLOUR15(colour, rv) \ 800 rv.red = ((colour >> 7) & 0xf8) | ((colour >> 12) & 0x7); \ 801 rv.green = ((colour >> 2) & 0xf8) | ((colour >> 8) & 0x7); \ 802 rv.blue = ((colour << 3) & 0xf8) | ((colour >> 2) & 0x7); \ 805 #define SPLITCOLOUR16(colour, rv) \ 807 rv.red = ((colour >> 840 translate_colour(uint32 colour) argument 3040 uint32 colour; local 3375 ui_rect( int x, int y, int cx, int cy, int colour) argument [all...] |
H A D | orders.h | 125 uint32 colour; member in struct:_RECT_ORDER
|
H A D | types.h | 95 uint32 colour; member in struct:_PEN
|
H A D | proto.h | 310 void ui_rect(int x, int y, int cx, int cy, int colour);
|
/vbox/src/VBox/HostServices/SharedOpenGL/render/ |
H A D | renderspu_glx.c | 1032 XColor colour; local 1043 cursor = XCreatePixmapCursor(dpy, pixmap, pixmap, &colour, &colour, 0, 0);
|
Completed in 1489 milliseconds