Home
last modified time | relevance | path

Searched refs:GREEN (Results 1 - 25 of 48) sorted by relevance

12

/third_party/mesa3d/src/intel/vulkan/
H A Danv_formats.c46 #define RGBA _ISL_SWIZZLE(RED, GREEN, BLUE, ALPHA)
47 #define BGRA _ISL_SWIZZLE(BLUE, GREEN, RED, ALPHA)
48 #define RGB1 _ISL_SWIZZLE(RED, GREEN, BLUE, ONE)
344 y_plane(0, ISL_FORMAT_YCRCB_SWAPUV, RGBA, _ISL_SWIZZLE(BLUE, GREEN, RED, ZERO), 1, 1)),
346 y_plane(0, ISL_FORMAT_YCRCB_SWAPUVY, RGBA, _ISL_SWIZZLE(BLUE, GREEN, RED, ZERO), 1, 1)),
348 y_plane(0, ISL_FORMAT_R8_UNORM, RGBA, _ISL_SWIZZLE(GREEN, ZERO, ZERO, ZERO), 1, 1),
352 y_plane(0, ISL_FORMAT_R8_UNORM, RGBA, _ISL_SWIZZLE(GREEN, ZERO, ZERO, ZERO), 1, 1),
355 y_plane(0, ISL_FORMAT_R8_UNORM, RGBA, _ISL_SWIZZLE(GREEN, ZERO, ZERO, ZERO), 1, 1),
359 y_plane(0, ISL_FORMAT_R8_UNORM, RGBA, _ISL_SWIZZLE(GREEN, ZERO, ZERO, ZERO), 1, 1),
362 y_plane(0, ISL_FORMAT_R8_UNORM, RGBA, _ISL_SWIZZLE(GREEN, ZER
[all...]
/third_party/mesa3d/src/gallium/drivers/iris/
H A Diris_formats.c56 swizzle = ISL_SWIZZLE(RED, RED, RED, GREEN); in iris_format_for_usage()
64 swizzle = ISL_SWIZZLE(RED, GREEN, BLUE, ONE); in iris_format_for_usage()
93 swizzle = ISL_SWIZZLE(RED, GREEN, BLUE, ONE); in iris_format_for_usage()
/third_party/node/deps/v8/tools/cppgc/
H A Dexport_to_github.sh40 GREEN="\033[0;32m"
54 echo -e "${GREEN}${1}${NOCOLOR}" > /dev/stderr
/third_party/python/Lib/test/
H A Dtest_enum.py2193 GREEN = 2 variable in TestSpecial.test_default_missing_no_chained_exception.Color
2293 GREEN = auto() variable in TestSpecial.test_multiple_mixin.Color
2296 self.assertEqual(Color.GREEN.value, 2)
2302 GREEN = auto() variable in TestSpecial.test_multiple_mixin.Color
2306 self.assertEqual(Color.GREEN.value, 2)
2312 GREEN = auto() variable in TestSpecial.test_multiple_mixin.Color
2316 self.assertEqual(Color.GREEN.value, 2)
2322 GREEN = auto() variable in TestSpecial.test_multiple_mixin.CoolColor
2326 self.assertEqual(CoolColor.GREEN.value, 2)
2332 GREEN variable in TestSpecial.test_multiple_mixin.CoolerColor
2343 GREEN = auto() global() variable in TestSpecial.test_multiple_mixin.CoolestColor
2354 GREEN = auto() global() variable in TestSpecial.test_multiple_mixin.ConfusedColor
2365 GREEN = auto() global() variable in TestSpecial.test_multiple_mixin.ReformedColor
2898 GREEN = 2 global() variable in OldTestFlag.Color
3282 GREEN = auto() global() variable in OldTestFlag.test_multiple_mixin.Color
3291 GREEN = auto() global() variable in OldTestFlag.test_multiple_mixin.Color
3301 GREEN = auto() global() variable in OldTestFlag.test_multiple_mixin.Color
3405 GREEN = 2 global() variable in OldTestIntFlag.Color
3827 GREEN = auto() global() variable in OldTestIntFlag.test_multiple_mixin.Color
3836 GREEN = auto() global() variable in OldTestIntFlag.test_multiple_mixin.Color
3846 GREEN = auto() global() variable in OldTestIntFlag.test_multiple_mixin.Color
4088 GREEN = 2 global() variable in TestVerify.test_negative_alias.Color
[all...]
H A Dtest_patma.py2066 GREEN = 1 variable in TestPatma.test_patma_198.Color
2072 case Color.GREEN:
2077 self.assertEqual(f(Color.GREEN), "Grass is green")
2092 GREEN = 1 variable in TestPatma.test_patma_199.Color
2098 case Color.GREEN:
2103 self.assertEqual(f(Color.GREEN), "Grass is green")
/third_party/backends/backend/
H A Dstv680.c1250 int RED, GREEN, BLUE; in stv680_bayer_unshuffle() local
1262 GREEN = dev->green_s; in stv680_bayer_unshuffle()
1270 "stv680_bayer_unshuffle: color read RED=%d, GREEN=%d, BLUE=%d\n", in stv680_bayer_unshuffle()
1271 RED, GREEN, BLUE); in stv680_bayer_unshuffle()
1361 *(dev->output + AD (x, y, vw) + GREEN) = in stv680_bayer_unshuffle()
1362 ((int) *(dev->output + AD (x - 1, y, vw) + GREEN) + in stv680_bayer_unshuffle()
1363 (int) *(dev->output + AD (x + 1, y, vw) + GREEN) + in stv680_bayer_unshuffle()
1364 (int) *(dev->output + AD (x, y - 1, vw) + GREEN) + in stv680_bayer_unshuffle()
1365 (int) *(dev->output + AD (x, y + 1, vw) + GREEN)) >> 2; in stv680_bayer_unshuffle()
1374 *(dev->output + AD (x, y, vw) + GREEN) in stv680_bayer_unshuffle()
[all...]
H A Dcanon.h67 #define GREEN 1 macro
H A Dlexmark.h141 GREEN, enumerator
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/src/main/cpp/
H A DGameConstants.h29 constexpr ScreenColor kTapSuccessColor = GREEN;
/third_party/mesa3d/.gitlab-ci/bin/
H A Dci_run_n_monitor.py37 "success": Fore.GREEN,
232 print(Fore.GREEN + f"Job finished: {job.web_url}" + Style.RESET_ALL)
/third_party/ffmpeg/libavfilter/
H A Ddrawutils.c33 enum { RED = 0, GREEN, BLUE, ALPHA }; enumerator
45 rgba_map[GREEN] = desc->comp[1].plane; in ff_fill_rgba_map()
70 av_assert0(rgba_map[RED] != rgba_map[GREEN]); in ff_fill_rgba_map()
71 av_assert0(rgba_map[GREEN] != rgba_map[BLUE]); in ff_fill_rgba_map()
74 av_assert0(rgba_map[GREEN] != rgba_map[ALPHA]); in ff_fill_rgba_map()
H A Dvf_huesaturation.c40 #define GREEN (1 << GREENS) macro
144 if (colors & GREEN) \
454 { "g", "set greens", 0, AV_OPT_TYPE_CONST, {.i64=GREEN}, 0, 0, VF, "colors" },
H A Davf_showspectrum.c53 enum ColorMode { CHANNEL, INTENSITY, RAINBOW, MORELAND, NEBULAE, FIRE, FIERY, FRUIT, COOL, MAGMA, GREEN, VIRIDIS, PLASMA, CIVIDIS, TERRAIN, NB_CLMODES }; enumerator
146 { "green", "green based coloring", 0, AV_OPT_TYPE_CONST, {.i64=GREEN}, 0, 0, FLAGS, "color" },
264 [GREEN] = {
567 case GREEN: in color_range()
1720 { "green", "green based coloring", 0, AV_OPT_TYPE_CONST, {.i64=GREEN}, 0, 0, FLAGS, "color" },
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/src/main/cpp/ui/
H A DOpenGLFunctions.h30 constexpr ScreenColor GREEN { 0.0f, 1.0f, 0.0f, 1.0f };
/third_party/skia/docs/examples/
H A DColor_Constants_a.cpp22 {"green", SkColorSetRGB( 0, 128, 0), SKIA_COLOR_PAIR(GREEN) }, in REG_FIDDLE()
/third_party/mesa3d/src/freedreno/ir3/
H A Dir3_print.c38 #define GREEN "\x1b[0;32m" macro
46 #define SYN_IMMED(x) GREEN x RESET
47 #define SYN_CONST(x) GREEN x RESET
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
H A Draw_ostream.h79 GREEN, member in llvm::raw_ostream::Colors
91 static const Colors GREEN = Colors::GREEN; member in llvm::raw_ostream
/third_party/libinput/tools/
H A Dlibinput-measure-fuzz.py49 GREEN = "\033[92m" variable in tcolors
61 print(tcolors.BOLD + tcolors.GREEN + msg + tcolors.NORMAL, **kwargs)
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DWithColor.cpp30 OS.changeColor(raw_ostream::GREEN); in WithColor()
/third_party/ffmpeg/libavcodec/
H A Drpzaenc.c55 GREEN = 1, enumerator
70 #define G(color) GET_CHAN(color, GREEN)
232 *chan = GREEN; in get_max_component_diff()
/third_party/skia/third_party/externals/libwebp/src/dec/
H A Dvp8l_dec.c42 GREEN = 0, enumerator
199 // Reads packed symbol depending on GREEN channel
232 HuffmanCode hcode = htree_group->htrees[GREEN][bits]; in BuildPackedTable()
507 if (total_size == 0 && htrees[GREEN][0].value < NUM_LITERAL_CODES) { in ReadHuffmanCodes()
509 htree_group->literal_arb |= htrees[GREEN][0].value << 8; in ReadHuffmanCodes()
1039 code = ReadSymbol(htree_group->htrees[GREEN], br); in DecodeAlphaData()
1163 code = ReadSymbol(htree_group->htrees[GREEN], br); in DecodeImageData()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A Draw_ostream.h77 GREEN, enumerator
/third_party/skia/tools/perf-canvaskit-puppeteer/
H A Dcanvas_perf.js436 [CanvasKit.GREEN, CanvasKit.BLUE],
580 [CanvasKit.GREEN, CanvasKit.BLUE],
/third_party/backends/backend/genesys/
H A Denums.h119 GREEN, member in genesys::ScanMethod::ColorFilter
H A Denums.cpp81 case ColorFilter::GREEN: out << "GREEN"; break; in operator <<()

Completed in 32 milliseconds

12