/external/mesa3d/src/gallium/drivers/nouveau/codegen/ |
D | nv50_ir_print.cpp | 59 static const char **colour; variable 64 colour = _nocolour; in init_colours() 66 colour = _colour; in init_colours() 378 PRINT("%s", colour[TXT_INSN]); in print() 444 PRINT("%s%c%c%i%s", colour[col], p, r, idx, postFix); in print() 453 PRINT("%s", colour[TXT_IMMD]); in print() 488 PRINT("%ssv[%s%s:%i%s", colour[TXT_MEM], in print() 489 colour[TXT_REGISTER], in print() 490 SemanticStr[reg.data.sv.sv], reg.data.sv.index, colour[TXT_MEM]); in print() 492 PRINT("%s+", colour[TXT_DEFAULT]); in print() [all …]
|
/external/u-boot/drivers/serial/ |
D | sandbox.c | 38 int colour; /* Text colour to use for output, -1 for none */ member 50 static void output_ansi_colour(int colour) in output_ansi_colour() argument 54 ansi_code[5] = '0' + colour; in output_ansi_colour() 79 if (plat->colour != -1) in sandbox_serial_remove() 90 if (priv->start_of_line && plat->colour != -1) { in sandbox_serial_putc() 92 output_ansi_colour(plat->colour); in sandbox_serial_putc() 150 const char *colour; in sandbox_serial_ofdata_to_platdata() local 153 plat->colour = -1; in sandbox_serial_ofdata_to_platdata() 154 colour = fdt_getprop(gd->fdt_blob, dev_of_offset(dev), in sandbox_serial_ofdata_to_platdata() 156 if (colour) { in sandbox_serial_ofdata_to_platdata() [all …]
|
/external/u-boot/tools/patman/ |
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='')
|
/external/catch2/include/reporters/ |
D | catch_reporter_compact.cpp | 46 Colour colour(Colour::ResultError); in printTotals() local 61 Colour colour(Colour::ResultError); in printTotals() local 66 Colour colour(Colour::ResultSuccess); in printTotals() local 160 void printResultType(Colour::Code colour, std::string const& passOrFail) const { in printResultType() argument 163 Colour colourGuard(colour); in printResultType() 178 Colour colour(dimColour()); in printExpressionWas() local 194 Colour colour(dimColour()); in printReconstructedExpression() local 208 void printRemainingMessages(Colour::Code colour = dimColour()) { in printRemainingMessages() argument 217 Colour colourGuard(colour); in printRemainingMessages()
|
D | catch_reporter_console.cpp | 41 colour(Colour::None), in ConsoleAssertionPrinter() 47 colour = Colour::Success; in ConsoleAssertionPrinter() 57 colour = Colour::Success; in ConsoleAssertionPrinter() 60 colour = Colour::Error; in ConsoleAssertionPrinter() 69 colour = Colour::Error; in ConsoleAssertionPrinter() 78 colour = Colour::Error; in ConsoleAssertionPrinter() 83 colour = Colour::Error; in ConsoleAssertionPrinter() 95 colour = Colour::Error; in ConsoleAssertionPrinter() 106 colour = Colour::Error; in ConsoleAssertionPrinter() 126 Colour colourGuard(colour); in printResultType() [all …]
|
D | catch_reporter_tap.hpp | 169 Colour colour( dimColour() ); in printExpressionWas() local 185 Colour colour( dimColour() ); in printReconstructedExpression() local 201 void printRemainingMessages( Colour::Code colour = dimColour() ) { in printRemainingMessages() argument 211 Colour colourGuard( colour ); in printRemainingMessages()
|
/external/u-boot/drivers/demo/ |
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()
|
D | demo-pdata.c | 11 .colour = "red", 15 .colour = "green", 19 .colour = "yellow",
|
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()
|
D | demo-simple.c | 19 printf("Hello from %08x: %s %d\n", (uint)map_to_sysmem(dev), pdata->colour, in simple_hello()
|
/external/swiftshader/third_party/PowerVR_SDK/Tools/ |
D | PVRTDecompress.cpp | 64 Pixel32 colour; in getColourA() local 69 colour.red = (PVRTuint8)((u32ColourData & 0x7c00) >> 10); // 5->5 bits in getColourA() 70 colour.green = (PVRTuint8)((u32ColourData & 0x3e0) >> 5); // 5->5 bits in getColourA() 71 colour.blue = (PVRTuint8)(u32ColourData & 0x1e) | ((u32ColourData & 0x1e) >> 4); // 4->5 bits in getColourA() 72 colour.alpha = (PVRTuint8)0xf;// 0->4 bits in getColourA() 77 …colour.red = (PVRTuint8)((u32ColourData & 0xf00) >> 7) | ((u32ColourData & 0xf00) >> 11); // 4-… in getColourA() 78 …colour.green = (PVRTuint8)((u32ColourData & 0xf0) >> 3) | ((u32ColourData & 0xf0) >> 7); // 4->… in getColourA() 79 …colour.blue = (PVRTuint8)((u32ColourData & 0xe) << 1) | ((u32ColourData & 0xe) >> 2); // 3->… in getColourA() 80 colour.alpha = (PVRTuint8)((u32ColourData & 0x7000) >> 11);// 3->4 bits - note 0 at right in getColourA() 83 return colour; in getColourA() [all …]
|
/external/swiftshader/third_party/PowerVR_SDK/Examples/Intermediate/ColourGrading/ |
D | ColourGrading.txt | 5 This example demonstrates using 3D textures to perform colour grading. 8 Colour grading is the act of enhancing the colour of a scene. This example demonstrates colour grad…
|
/external/pcre/dist2/ |
D | RunGrepTest | 326 (cd $srcdir; $valgrind $vjs $pcre2grep --colour=always jumps ./testdata/grepinputv) >>testtrygrep 394 (cd $srcdir; $valgrind $vjs $pcre2grep -vn --colour=always pattern ./testdata/grepinputx) >>testtry… 416 (cd $srcdir; $valgrind $vjs $pcre2grep -o --colour=always "^01|^02|^03" ./testdata/grepinput) >>tes… 428 (cd $srcdir; $valgrind $vjs $pcre2grep -o --colour=always "^01|02|^03" ./testdata/grepinput) >>test… 440 (cd $srcdir; $valgrind $vjs $pcre2grep -o --colour=always "^01|^02|03" ./testdata/grepinput) >>test… 452 (cd $srcdir; $valgrind $vjs $pcre2grep -o --colour=always "\\b01|\\b02" ./testdata/grepinput) >>tes… 535 (cd $srcdir; $valgrind $vjs $pcre2grep -o3 -Ho2 -o12 --only-matching=1 -o3 --colour=always --om-sep… 551 (cd $srcdir; $valgrind $vjs $pcre2grep --colour=always "ipsum|" ./testdata/grepinput3) >>testtrygre… 630 (cd $srcdir; $valgrind $vjs $pcre2grep -Mn --colour=always 'start[\s]+end' testdata/grepinputM) >>t… 632 (cd $srcdir; $valgrind $vjs $pcre2grep -Mn --colour=always -A2 'start[\s]+end' testdata/grepinputM)… [all …]
|
/external/catch2/single_include/catch2/ |
D | catch_reporter_tap.hpp | 169 Colour colour( dimColour() ); in printExpressionWas() local 185 Colour colour( dimColour() ); in printReconstructedExpression() local 201 void printRemainingMessages( Colour::Code colour = dimColour() ) { in printRemainingMessages() argument 211 Colour colourGuard( colour ); in printRemainingMessages()
|
/external/u-boot/doc/device-tree-bindings/serial/ |
D | sandbox-serial.txt | 10 sandbox,text-colour: If present, this is the colour of the console text.
|
/external/u-boot/arch/sandbox/dts/ |
D | sandbox.dts | 86 colour = "white"; 232 colour = "blue"; 251 colour = "cyan"; 260 sandbox,text-colour = "cyan";
|
D | sandbox64.dts | 86 colour = "white"; 232 colour = "blue"; 251 colour = "cyan"; 260 sandbox,text-colour = "cyan";
|
/external/vixl/tools/ |
D | printer.py | 36 def ColourCode(colour): argument 37 return '' if output_redirected_to_file else colour
|
/external/u-boot/board/bluewater/gurnard/ |
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()
|
/external/u-boot/tools/buildman/ |
D | builder.py | 928 Print(msg, colour=color) 956 Print(msg, colour=color, newline=False) 1066 Print(msg, colour=color, newline=False) 1194 Print(' ' + line, newline=True, colour=col) 1241 Print('\n'.join(better_err), colour=self.col.GREEN) 1244 Print('\n'.join(worse_err), colour=self.col.RED) 1247 Print('\n'.join(better_warn), colour=self.col.CYAN) 1250 Print('\n'.join(worse_warn), colour=self.col.MAGENTA) 1414 Print(msg, colour=self.col.BLUE) 1439 Print('(no errors to report)', colour=self.col.GREEN)
|
/external/catch2/docs/ |
D | configuration.md | 8 [Terminal colour](#terminal-colour)<br> 46 ## Terminal colour 50 CATCH_CONFIG_COLOUR_ANSI // forces ANSI colour codes to be used 52 Yes, I am English, so I will continue to spell "colour" with a 'u'. 54 …Win32 API, ```SetConsoleTextAttribute```, is used. On POSIX systems ANSI colour escape codes are i… 58 Note that when ANSI colour codes are used "unistd.h" must be includable - along with a definition o…
|
/external/v8/tools/perf/ |
D | statistics-for-json.R | 96 speedup <- ggplot(df2, aes(x = x, y = E, colour=p.value.sig)) + 97 geom_errorbar(aes(ymax = L, ymin = R), colour="black") +
|
/external/u-boot/drivers/video/ |
D | Kconfig | 513 model. Video drivers typically provide a colour text console and 524 bool "Enable colour frame buffer console" 528 Enables the colour frame buffer driver. This supports colour 530 Several colour devices are supported along with various options to 568 This allows the colour buffer frame buffer driver to support 614 hex "Background colour" 618 Defines the background colour for the console. The value is from 621 the background and foreground to the same colour or you will see 625 hex "Foreground colour" 629 Defines the foreground colour for the console. The value is from [all …]
|
/external/mesa3d/src/gallium/drivers/vc5/ |
D | vc5_emit.c | 491 cl_emit(&job->bcl, BLEND_CONSTANT_COLOUR, colour) { in v3dX() 492 colour.red_f16 = (vc5->swap_color_rb ? in v3dX() 495 colour.green_f16 = vc5->blend_color.hf[1]; in v3dX() 496 colour.blue_f16 = (vc5->swap_color_rb ? in v3dX() 499 colour.alpha_f16 = vc5->blend_color.hf[3]; in v3dX()
|
/external/catch2/include/internal/ |
D | catch_list.cpp | 40 Colour::Code colour = testCaseInfo.isHidden() in listTests() local 43 Colour colourGuard( colour ); in listTests()
|