Home
last modified time | relevance | path

Searched full:color (Results 1 – 25 of 54) sorted by relevance

123

/qemu/ui/icons/
H A Dqemu.svg24 style="stop-color:#000000;stop-opacity:1;"
30 style="stop-color:#000000;stop-opacity:0.87843138;" />
32 style="stop-color:#ffffff;stop-opacity:0.43921569;"
38 style="stop-color:#181818;stop-opacity:1;" />
40 style="stop-color:#242424;stop-opacity:1;"
44 style="stop-color:#000000;stop-opacity:1;"
51 style="stop-color:#000000;stop-opacity:1;"
55 style="stop-color:#000000;stop-opacity:0.8974359;"
62 style="stop-color:#ffffff;stop-opacity:1;"
66 style="stop-color:#ffffff;stop-opacity:0;"
[all …]
/qemu/pc-bios/
H A Dqemu_logo.svg26 style="stop-color:#000000;stop-opacity:1;"
32 style="stop-color:#000000;stop-opacity:0.87843138;" />
34 style="stop-color:#ffffff;stop-opacity:0.43921569;"
40 style="stop-color:#181818;stop-opacity:1;" />
42 style="stop-color:#242424;stop-opacity:1;"
46 style="stop-color:#000000;stop-opacity:1;"
53 style="stop-color:#000000;stop-opacity:1;"
57 style="stop-color:#000000;stop-opacity:0.8974359;"
64 style="stop-color:#ffffff;stop-opacity:1;"
68 style="stop-color:#ffffff;stop-opacity:0;"
[all …]
/qemu/ui/
H A Dvnc-palette.c33 uint32_t color, unsigned int hash) in palette_find() argument
38 if (entry->color == color) { in palette_find()
76 int palette_put(VncPalette *palette, uint32_t color) in palette_put() argument
82 hash = palette_hash(color, palette->bpp) % VNC_PALETTE_HASH_SIZE; in palette_put()
83 entry = palette_find(palette, color, hash); in palette_put()
90 entry->color = color; in palette_put()
98 int palette_idx(const VncPalette *palette, uint32_t color) in palette_idx() argument
103 hash = palette_hash(color, palette->bpp) % VNC_PALETTE_HASH_SIZE; in palette_idx()
104 entry = palette_find(palette, color, hash); in palette_idx()
114 void (*iter)(int idx, uint32_t color, void *opaque), in palette_iter() argument
[all …]
H A Dvnc-enc-hextile-template.h128 pixel_t color = 0; /* shut up gcc */ in CONCAT() local
134 color = irow[i]; in CONCAT()
137 } else if (irow[i] != color) { in CONCAT()
140 vnc_convert_pixel(vs, data + n_data, color); in CONCAT()
143 memcpy(data + n_data, &color, sizeof(color)); in CONCAT()
152 color = irow[i]; in CONCAT()
160 vnc_convert_pixel(vs, data + n_data, color); in CONCAT()
163 memcpy(data + n_data, &color, sizeof(color)); in CONCAT()
173 /* A SubrectsColoured subtile invalidates the foreground color */ in CONCAT()
H A Dvnc-enc-tight.c83 int jpeg_full; /* Allow full color JPEG */
150 * If client is big-endian, color samples begin from the second in tight_detect_smooth_image24()
473 * if it does, use the first color instead \
544 * ``Gradient'' filter for 24-bit color samples.
546 * Color components assumed to be byte-aligned.
602 * ``Gradient'' filter for other color depths.
669 * Check if a rectangle is all of the same color. If needSameColor is
670 * set to non-zero, then also check that its color equals to the
672 * that case new color will be stored in *colorPtr.
677 uint32_t *color, bool samecolor) in check_solid_tile32() argument
[all …]
H A Dvnc-palette.h39 uint32_t color; member
55 int palette_put(VncPalette *palette, uint32_t color);
56 int palette_idx(const VncPalette *palette, uint32_t color);
60 void (*iter)(int idx, uint32_t color, void *opaque),
H A Dvnc-enc-tight.h98 * which converts each color component to a difference between a "predicted"
108 * Here V[i,j] is the intensity of a color component for a pixel at
109 * coordinates (i,j). MAX is the maximum value of intensity for a color
112 *-- The "palette" filter converts true-color pixel data to indexed colors
139 *-- NOTE 1. If the color depth is 24, and all three color components are
142 * green component, and the third byte is blue component of the pixel color
H A Dcursor.c30 /* parse color table */ in cursor_parse_xpm()
42 fprintf(stderr, "%s: color parse error: \"%s\"\n", in cursor_parse_xpm()
175 * transparent neighbors with the background color) and use the foreground in cursor_set_mono()
176 * color as "inverted" color. in cursor_set_mono()
H A Dcurses.c619 short color; in font_setup() local
622 ret = getcchar(&vga_to_curses[i], wch, &attr, &color, NULL); in font_setup()
751 /* Make color pair to match color format (3bits bg:3bits fg) */ in curses_setup()
755 /* Set default color for more than 64 for safety. */ in curses_setup()
/qemu/docs/sphinx-static/
H A Dtheme_overrides.css11 color: black;
22 background-color: #eaedf1;
23 color: black;
31 border-color: #f60;
35 color: white;
39 color: #505050;
43 color: #303030;
53 color: black;
94 background-color: transparent;
103 background-color: #5980a6;
[all …]
/qemu/include/hw/misc/
H A Dled.h17 * LEDColor: Color of a LED
21 * LED colors from 'Table 1. Product performance of LUXEON Rebel Color
22 * Line' of the 'DS68 LUXEON Rebel Color Line' datasheet available at:
23 * https://www.lumileds.com/products/color-leds/luxeon-rebel-color/
46 char *color; member
85 * @color: color of the LED
95 LEDColor color,
/qemu/hw/misc/
H A Dled.c43 trace_led_set_intensity(s->description, s->color, intensity_percent); in led_set_intensity()
45 trace_led_change_intensity(s->description, s->color, in led_set_intensity()
90 if (s->color == NULL) { in led_realize()
91 error_setg(errp, "property 'color' not specified"); in led_realize()
93 } else if (!led_color_name_is_valid(s->color)) { in led_realize()
94 error_setg(errp, "property 'color' invalid or not supported"); in led_realize()
105 DEFINE_PROP_STRING("color", LEDState, color),
138 LEDColor color, in type_init()
147 qdev_prop_set_string(dev, "color", led_color_name[color]); in type_init()
/qemu/util/
H A Dinterval-tree.c32 * We shall indicate color with case, where black nodes are uppercase and red
33 * nodes will be lowercase. Unknown color nodes shall be drawn as red within
125 static inline void rb_set_parent_color(RBNode *n, RBNode *p, RBColor color) in rb_set_parent_color() argument
127 rb_set_pc(n, (uintptr_t)p | color); in rb_set_parent_color()
191 RBRoot *root, RBColor color) in rb_rotate_set_parents() argument
197 rb_set_parent_color(old, new, color); in rb_rotate_set_parents()
234 * Case 1 - node's uncle is red (color flips). in rb_insert_augmented()
301 /* Case 1 - color flips */ in rb_insert_augmented()
386 * Case 2 - sibling color flip in rb_erase_color()
387 * (p could be either color here) in rb_erase_color()
[all …]
/qemu/hw/display/
H A Djazz_led.c87 uint32_t color) in draw_horizontal_line() argument
97 *((uint8_t *)d) = color; in draw_horizontal_line()
103 *((uint16_t *)d) = color; in draw_horizontal_line()
109 *((uint32_t *)d) = color; in draw_horizontal_line()
118 uint32_t color) in draw_vertical_line() argument
128 *((uint8_t *)d) = color; in draw_vertical_line()
134 *((uint16_t *)d) = color; in draw_vertical_line()
140 *((uint32_t *)d) = color; in draw_vertical_line()
H A Dvga-helpers.h99 * 4 color mode
141 * 4 color mode, dup2 horizontal
180 * 16 color mode
218 * 16 color mode, dup2 horizontal
256 * 256 color mode, double pixels
269 /* For 256 color modes, we can adjust the source address and write directly in vga_draw_line8d2()
298 * standard 256 color mode
331 * 15 bit color
372 * 16 bit color
413 * 24 bit color
[all …]
H A Dg364fb.c141 unsigned int color; in g364fb_draw_graphic8() local
151 color = (*rgb_to_pixel)( in g364fb_draw_graphic8()
156 /* get cursor color */ in g364fb_draw_graphic8()
158 color = (*rgb_to_pixel)( in g364fb_draw_graphic8()
166 color = (*rgb_to_pixel)( in g364fb_draw_graphic8()
171 memcpy(dd, &color, w); in g364fb_draw_graphic8()
366 /* color palette */ in g364fb_ctrl_write()
H A Dvga_regs.h32 #define VGA_CRT_DC 0x3D5 /* CRT Controller Data Register - color emulation */
41 #define VGA_IS1_RC 0x3DA /* Input Status Register 1 - color emulation */
51 #define VGA_CRT_IC 0x3D4 /* CRT Controller Index - color emulation */
H A Dmacfb.c128 /* 1-bit color */
148 /* 2-bit color */
168 /* 4-bit color */
188 /* 8-bit color */
206 /* 16-bit color */
226 /* 24-bit color */
H A Dexynos4210_fimd.c149 /* Window color key registers */
157 /* Window color key alpha control register */
170 /* Window color map registers */
204 /* Color gain control register */
273 uint32_t keycon[2]; /* Window color key registers */
274 uint32_t keyalpha; /* Color key alpha control register */
275 uint32_t winmap; /* Window color map register */
318 uint32_t colorgaincon; /* Color gain control register */
371 * Every color component internally represented as 8-bit value. If original
440 /* Lookup table to extent 2-bit color component to 8 bit */
[all …]
/qemu/include/standard-headers/drm/
H A Ddrm_fourcc.h112 /* color index */
554 * Intel color control surface (CCS) for render compression
574 * Intel color control surfaces (CCS) for Gen-12 render compression.
585 * Intel color control surfaces (CCS) for Gen-12 media compression
598 * Intel Color Control Surface with Clear Color (CCS) for Gen-12 render
602 * and at index 1. The clear color is stored at index 2, and the pitch should
603 * be 64 bytes aligned. The clear color structure is 256 bits. The first 128 bits
604 * represents Raw Clear Color Red, Green, Blue and Alpha color each represented
605 * by 32 bits. The raw clear color is consumed by the 3d engine and generates
606 * the converted clear color of size 64 bits. The first 32 bits store the Lower
[all …]
/qemu/tests/qemu-iotests/
H A Dtestrunner.py142 color: str = 'auto') -> None:
147 assert color in ('auto', 'on', 'off')
148 self.color = (color == 'on') or (color == 'auto' and
199 if self.color:
H A Dcheck65 p.add_argument('--color', choices=['on', 'off', 'auto'],
191 color=args.color) as tr:
/qemu/tests/migration-stress/guestperf/
H A Dplot.py65 color = self.COLORS[self._color_idx]
69 return color
144 "color": self._next_color(),
187 "color": self._next_color(),
210 "color": self._next_color(),
259 "color": self._next_color(),
319 "color": self._next_color(),
/qemu/hw/dma/
H A Domap_dma.c46 uint32_t color; member
385 *(uint32_t *) value = ch->color; in omap_dma_transfer_generic()
387 if (!ch->transparent_copy || *(uint32_t *) value != ch->color) in omap_dma_transfer_generic()
715 s->ch[i].color = 0x00000000;
834 *value = ch->color & 0xffff;
838 *value = ch->color >> 16;
969 ch->color &= 0xffff0000;
970 ch->color |= value;
974 ch->color &= 0xffff;
975 ch->color |= (uint32_t)value << 16;
/qemu/scripts/
H A Dcheckpatch.pl30 my $color = "auto";
75 --color[=WHEN] Use colors 'always', 'never', or only when output
86 # Prevent --color by itself from consuming other arguments
88 if ($_ eq "--color" || $_ eq "-color") {
89 $_ = "--color=$color";
111 'color=s' => \$color,
112 'no-color' => sub { $color = 'never'; },
189 if ($color =~ /^always$/i) {
190 $color = 1;
191 } elsif ($color =~ /^never$/i) {
[all …]

123