/openbmc/u-boot/drivers/serial/ |
H A D | sandbox.c | 41 int colour; /* Text colour to use for output, -1 for none */ member 53 static void output_ansi_colour(int colour) in output_ansi_colour() argument 57 ansi_code[5] = '0' + colour; in output_ansi_colour() 85 if (plat->colour != -1) in sandbox_serial_remove() 96 if (priv->start_of_line && plat->colour != -1) { in sandbox_serial_putc() 98 output_ansi_colour(plat->colour); in sandbox_serial_putc() 220 const char *colour; in sandbox_serial_ofdata_to_platdata() local 223 plat->colour = -1; in sandbox_serial_ofdata_to_platdata() 224 colour = fdt_getprop(gd->fdt_blob, dev_of_offset(dev), in sandbox_serial_ofdata_to_platdata() 226 if (colour) { in sandbox_serial_ofdata_to_platdata() [all …]
|
/openbmc/u-boot/tools/patman/ |
H A D | terminal.py | 30 def __init__(self, text, newline, colour): argument 33 self.colour = colour 36 return 'newline=%s, colour=%s, text=%s' % (self.newline, self.colour, 39 def Print(text='', newline=True, colour=None): argument 51 print_test_list.append(PrintLine(text, newline, colour)) 53 if colour: 55 text = col.Color(colour, text) 83 if line.colour: 85 print(col.Color(line.colour, line.text), end='')
|
/openbmc/u-boot/drivers/demo/ |
H A D | demo-shape.c | 45 const char *colour = pdata->colour; in shape_hello() local 63 putc(first ? *colour++ : ch); in shape_hello() 66 if (!*colour) in shape_hello() 67 colour = pdata->colour; in shape_hello()
|
H A D | demo-pdata.c | 11 .colour = "red", 15 .colour = "green", 19 .colour = "yellow",
|
H A D | demo-uclass.c | 71 pdata->colour = fdt_getprop(gd->fdt_blob, dn, "colour", NULL); in demo_parse_dt() 72 if (!pdata->sides || !pdata->colour) { in demo_parse_dt()
|
H A D | demo-simple.c | 19 printf("Hello from %08x: %s %d\n", (uint)map_to_sysmem(dev), pdata->colour, in simple_hello()
|
/openbmc/linux/Documentation/userspace-api/media/v4l/ |
H A D | ext-ctrls-image-source.rst | 36 Analogue gain is gain affecting all colour components in the pixel 41 Test pattern red colour component. 44 Test pattern green (next to red) colour component. 47 Test pattern blue colour component. 50 Test pattern green (next to blue) colour component. 78 colour channels by subsequent processing (such as by an ISP). The 89 with, for example, non-Bayer CFAs (colour filter arrays).
|
H A D | pixfmt-srggb10dpcm8.rst | 25 colour compressed to 8 bits each, using DPCM compression. DPCM, 26 differential pulse-code modulation, is lossy. Each colour component
|
H A D | pixfmt-srggb12.rst | 24 colour. Each colour component is stored in a 16-bit word, with 4 unused
|
H A D | biblio.rst | 223 … Colour measurement and management - Part 2-1: Colour management - Default RGB colour space - sRGB" 233 … Colour measurement and management - Part 2-1: Colour management - Default RGB colour space - sRGB" 243 …rement and management - Part 2-4: Colour management - Extended-gamut YCC colour space for video ap… 253 …olour measurement and management - Part 2-5: Colour management - Optional RGB colour space - opRGB"
|
H A D | fourcc.rst | 8 the pixel format, compression and colour space. The interpretation of the
|
/openbmc/u-boot/doc/device-tree-bindings/serial/ |
H A D | sandbox-serial.txt | 10 sandbox,text-colour: If present, this is the colour of the console text.
|
/openbmc/u-boot/arch/sandbox/dts/ |
H A D | sandbox64.dts | 78 colour = "white"; 231 colour = "blue"; 250 colour = "cyan"; 259 sandbox,text-colour = "cyan";
|
H A D | sandbox.dts | 88 colour = "white"; 266 colour = "blue"; 286 colour = "cyan"; 296 sandbox,text-colour = "cyan";
|
/openbmc/u-boot/board/bluewater/gurnard/ |
H A D | gurnard.c | 118 u16 colour; in lcd_splash() local 129 colour = bmp_logo_palette[bmp_logo_bitmap[ in lcd_splash() 133 base_addr[posy * width + posx] = colour; in lcd_splash()
|
/openbmc/phosphor-webui/app/common/styles/components/ |
H A D | form-elements.scss | 165 /* Disabled tick colour */ 237 /* Disabled tick colour */ 257 /* Disabled circle colour */
|
/openbmc/qemu/tests/qapi-schema/ |
H A D | features-unknown-key.json | 3 'features': [ { 'name': 'bar', 'colour': 'red' } ] }
|
H A D | features-unknown-key.err | 2 features-unknown-key.json:1: 'features' member has unknown key 'colour'
|
/openbmc/u-boot/tools/buildman/ |
H A D | builder.py | 930 Print(msg, colour=color) 958 Print(msg, colour=color, newline=False) 1068 Print(msg, colour=color, newline=False) 1196 Print(' ' + line, newline=True, colour=col) 1252 Print('\n'.join(better_err), colour=self.col.GREEN) 1255 Print('\n'.join(worse_err), colour=self.col.RED) 1258 Print('\n'.join(better_warn), colour=self.col.CYAN) 1261 Print('\n'.join(worse_warn), colour=self.col.MAGENTA) 1425 Print(msg, colour=self.col.BLUE) 1450 Print('(no errors to report)', colour=self.col.GREEN)
|
H A D | test.py | 233 self.assertEqual(lines[5].colour, col.MAGENTA) 262 self.assertEqual(lines[14].colour, col.GREEN) 266 self.assertEqual(lines[15].colour, col.MAGENTA)
|
/openbmc/u-boot/include/ |
H A D | dm-demo.h | 19 const char *colour; member
|
/openbmc/u-boot/drivers/video/ |
H A D | Kconfig | 547 model. Video drivers typically provide a colour text console and 558 bool "Enable colour frame buffer console" 562 Enables the colour frame buffer driver. This supports colour 564 Several colour devices are supported along with various options to 602 This allows the colour buffer frame buffer driver to support 648 hex "Background colour" 652 Defines the background colour for the console. The value is from 655 the background and foreground to the same colour or you will see 659 hex "Foreground colour" 663 Defines the foreground colour for the console. The value is from [all …]
|
/openbmc/linux/Documentation/driver-api/media/drivers/ |
H A D | cx2341x-devel.rst | 2778 indexed colour palette is much easier to set at just two registers, but again 3082 Decoder output video surround colour. 3084 Contains the colour (in yuv) used to fill the screen when the video is 3089 Decoder video window colour 3090 Contains the colour (in yuv) used to fill the video window when the 3397 osd colour mode 3421 osd colour key 3430 osd colour space 3438 When the bits-per-pixel is set to 8, the colour mode is ignored and 3439 assumed to be 8 bit indexed. For 16 & 32 bits-per-pixel the colour depth [all …]
|
/openbmc/linux/include/linux/ |
H A D | slab_def.h | 34 size_t colour; /* cache colouring range */ member
|
/openbmc/linux/Documentation/images/ |
H A D | COPYING-logo | 1 This is the full-colour version of the currently unofficial Linux logo
|