/third_party/lame/frontend/ |
H A D | gpkplotting.h | 49 void setcolor(GtkWidget * widget, GdkColor * color, int red, int green, int blue);
|
/third_party/node/deps/npm/node_modules/@colors/colors/lib/ |
H A D | styles.js | 42 green: [32, 39],
|
/third_party/skia/third_party/externals/swiftshader/src/Main/ |
H A D | FrameBufferWin.hpp | 25 short green[256]; member
|
/third_party/skia/third_party/externals/libwebp/src/dsp/ |
H A D | lossless.c | 245 // Add green to blue and red channels (i.e. perform the inverse transform of 246 // 'subtract green'). 252 const uint32_t green = ((argb >> 8) & 0xff); in VP8LAddGreenToBlueAndRed_C() local 254 red_blue += (green << 16) | green; in VP8LAddGreenToBlueAndRed_C() 278 const int8_t green = (int8_t)(argb >> 8); in VP8LTransformColorInverse_C() local 282 new_red += ColorTransformDelta(m->green_to_red_, green); in VP8LTransformColorInverse_C() 284 new_blue += ColorTransformDelta(m->green_to_blue_, green); in VP8LTransformColorInverse_C()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/ |
H A D | jsXNode.js | 1600 constructor(red, green, blue, alpha = MAX_CHANNEL_VALUE) { 1602 this.green_ = ColorMetrics.clamp(green); 1614 const green = (value >> 8) & 0x000000FF; 1618 return new ColorMetrics(red, green, blue); 1620 return new ColorMetrics(red, green, blue, alpha); 1622 static rgba(red, green, blue, alpha = MAX_ALPHA_VALUE) { 1623 return new ColorMetrics(red, green, blue, alpha * MAX_CHANNEL_VALUE); 1631 const [, red, green, blue] = rgbMatch; 1632 return new ColorMetrics(Number.parseInt(red, 10), Number.parseInt(green, 10), Number.parseInt(blue, 10)); 1635 const [, red, green, blu [all...] |
/drivers/peripheral/display/hal/default_standard/src/display_gralloc/ |
H A D | framebuffer_allocator.cpp | 39 varInfo.green.length = 8; // 8 bits in SetFdFormatAndVirtualRes() 44 varInfo.green.offset = 8; // offset 8 of green channel in SetFdFormatAndVirtualRes()
|
/foundation/arkui/ui_lite/frameworks/components/ |
H A D | ui_qrcode.cpp | 181 *(initColorData + 1) = backgroundColor_.green; // 1: G channel in FillQrCodeBackgroundColor() 216 *(tempData + 1) = qrColor_.green; // 1: G channel in GetDestData()
|
/foundation/graphic/graphic_2d/rosen/modules/graphics_effect/src/ |
H A D | ge_magnifier_shader_filter.cpp | 188 float green = magnifyingGlass.y; in InitMagnifierEffect() 190 float offsetY = -refractionStrength * sign(green) * green * green; in InitMagnifierEffect() 234 int16_t green = static_cast<int16_t>((rgba & 0x00FF0000) >> 16); // 0x00ff0000 green mask, 16 green shift in ConvertToRgba() local 238 color[1] = green * 1.0f / 255.0f; // 255.0f is the max value, 1 green in ConvertToRgba()
|
/third_party/node/lib/internal/test_runner/reporter/ |
H A D | spec.js | 17 const { green, blue, red, white, gray, shouldColorize } = require('internal/util/colors'); 27 'test:pass': green,
|
/third_party/node/deps/npm/lib/commands/ |
H A D | run-script.js | 168 `${colorize.reset(colorize.bold('Lifecycle scripts'))} included in ${colorize.green( 180 `${colorize.bold('Scripts')} available in ${colorize.green(pkgid)} via \`${colorize.blue(
|
/third_party/python/Lib/ctypes/ |
H A D | wintypes.py | 125 def RGB(red, green, blue): 126 return red + (green << 8) + (blue << 16)
|
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/ |
H A D | ExternalWrapTest.cpp | 71 float green = static_cast<float>(y) / texSize; variable 77 data[(y * texSize + x) * 4 + 1] = static_cast<GLubyte>(green * 255);
|
H A D | RobustResourceInitTest.cpp | 407 std::vector<GLColor> expected(getWindowWidth() * getWindowHeight(), GLColor::green); in TEST_P() member in angle::GLColor 941 std::vector<GLColor> bunchOfGreen(fboWidth * fboHeight, GLColor::green); in TEST_P() 1026 EXPECT_PIXEL_COLOR_EQ(0, 0, GLColor::green); in TEST_P() 1089 GLColor::green, GLColor::green, GLColor::red, GLColor::red, in TEST_P() 1090 GLColor::green, GLColor::green, GLColor::red, GLColor::red, in TEST_P() 1099 checkFramebufferNonZeroPixels(0, 0, 2, 2, GLColor::green); in TEST_P() 2229 // should be green. in TEST_P() 2231 EXPECT_PIXEL_COLOR_EQ(0, 0, GLColor::green); in TEST_P() [all...] |
/third_party/skia/third_party/externals/libpng/contrib/examples/ |
H A D | pngpixel.c | 103 palette[index].red, palette[index].green, in print_pixel() 109 palette[index].red, palette[index].green, in print_pixel()
|
/third_party/skia/third_party/externals/libpng/contrib/gregbook/ |
H A D | readpng2.c | 276 * green and blue values, regardless of color_type: */ in readpng2_info_callback() 285 mainprog_ptr->bg_green = pBackground->green >> 8; in readpng2_info_callback() 299 mainprog_ptr->bg_green = (uch)pBackground->green; in readpng2_info_callback()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A D | angletypes.h | 627 const bool green, 631 return (red ? 1 : 0) | (green ? 2 : 0) | (blue ? 4 : 0) | (alpha ? 8 : 0); 636 bool *green, 641 *green = static_cast<bool>(value & 2); 647 const bool green, 651 void setColorMask(const bool red, const bool green, const bool blue, const bool alpha); 655 const bool green, 661 bool *green,
|
/third_party/vk-gl-cts/external/openglcts/modules/common/ |
H A D | glcTextureRepeatModeTests.cpp | 44 int green; /* green bits */ member 594 * NOTE: width of the red and blue rectangles would be less than green and white ones for odd texture's widths 595 * height of the red and green rectangles would be less than blue and white ones for odd texture's heights 602 const GLubyte* green = testedFormat->internalgreen; in fillTextureWithColor() local 618 deMemcpy(texture_data, green, size); in fillTextureWithColor() 751 const GLubyte* green = testedFormat->RGBAgreen; in verifyClampToEdge() local 790 if (!isEqual(buf, green, epsilons[1])) in verifyClampToEdge() 845 const GLubyte* green = testedFormat->RGBAgreen; in verifyRepeat() local 879 if (!isEqual(buf, green, toleranc in verifyRepeat() 928 const GLubyte* green = testedFormat->RGBAgreen; verifyMirroredRepeat() local [all...] |
/third_party/skia/third_party/externals/angle2/include/GLES/ |
H A D | gl.h | 409 typedef void (GL_APIENTRYP PFNGLCLEARCOLORPROC) (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); 412 typedef void (GL_APIENTRYP PFNGLCOLOR4FPROC) (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); 454 typedef void (GL_APIENTRYP PFNGLCLEARCOLORXPROC) (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); 459 typedef void (GL_APIENTRYP PFNGLCOLOR4UBPROC) (GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha); 460 typedef void (GL_APIENTRYP PFNGLCOLOR4XPROC) (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); 461 typedef void (GL_APIENTRYP PFNGLCOLORMASKPROC) (GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha); 554 GL_API void GL_APIENTRY glClearColor (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); 557 GL_API void GL_APIENTRY glColor4f (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); 599 GL_API void GL_APIENTRY glClearColorx (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); 604 GL_API void GL_APIENTRY glColor4ub (GLubyte red, GLubyte green, GLubyt [all...] |
/third_party/vk-gl-cts/modules/gles3/functional/ |
H A D | es3fDrawBuffersIndexedTests.cpp | 328 const float green = -1000.0f + 2000.0f * greenScale; in clearRenderbuffer() local 331 const Vec4 color (red, green, blue, alpha); in clearRenderbuffer() 341 const deInt32 green = deInt32(info.valueMin.y() + (info.valueMax.y() - info.valueMin.y()) * greenScale); in clearRenderbuffer() local 344 const IVec4 color (red, green, blue, alpha); in clearRenderbuffer() 354 const deUint32 green = deUint32(info.valueMax.y() * greenScale); in clearRenderbuffer() local 357 const UVec4 color (red, green, blue, alpha); in clearRenderbuffer() 367 const float green = info.valueMin.y() + (info.valueMax.y() - info.valueMin.y()) * greenScale; in clearRenderbuffer() local 370 const Vec4 color (red, green, blue, alpha); in clearRenderbuffer() 380 const float green = info.valueMax.y() * greenScale; in clearRenderbuffer() local 383 const Vec4 color (red, green, blu in clearRenderbuffer() 1315 const bool green = rng.getBool(); genRandomBlendState() local [all...] |
/third_party/python/Lib/test/ |
H A D | test_enum.py | 960 green = 2 variable in TestSpecial.test_duplicate_name_error.Color 967 green = 2 variable in TestSpecial.test_duplicate_name_error.Color 978 green = 2 variable in TestSpecial.test_duplicate_name_error.Color 1424 green = 2 variable in TestSpecial.test_extending.Color 1534 green = 2 variable in TestSpecial.test_no_such_enum_member.Color 1975 green = () variable in TestSpecial.test_inherited_new_from_enhanced_enum.Color 1977 self.assertEqual(list(Color), [Color.red, Color.green, Color.blue]) 1989 green = () variable in TestSpecial.test_inherited_new_from_mixed_enum.Color 1991 self.assertEqual(list(Color), [Color.red, Color.green, Color.blue]) 2037 green variable in TestSpecial.test_extending2.Color 2098 green = 2 global() variable in TestSpecial.test_no_duplicates.Color 2103 green = 2 global() variable in TestSpecial.test_no_duplicates.Color.Color 2165 green = () global() variable in TestSpecial.test_nonhash_value.ColorInAList 2205 green = 2 global() variable in TestSpecial.test_missing_override.Color 2825 green = 2 global() variable in TestOrder.test_same_members.Color 2832 green = 2 global() variable in TestOrder.test_same_members_with_aliases.Color 2842 green = 2 global() variable in TestOrder.test_same_members_wrong_order.Color 2849 green = 2 global() variable in TestOrder.test_order_has_extra_members.Color 2857 green = 2 global() variable in TestOrder.test_order_has_extra_members_with_aliases.Color 2866 green = 2 global() variable in TestOrder.test_enum_has_extra_members.Color 2875 green = 2 global() variable in TestOrder.test_enum_has_extra_members_with_aliases.Color 3245 green = auto() global() variable in OldTestFlag.test_auto_number.Color 4124 green = auto() global() variable in TestInternals.test_auto_number.Color 4137 green = auto() global() variable in TestInternals.test_auto_name.Color 4151 green = auto() global() variable in TestInternals.test_auto_name_inherit.Color 4178 green = auto() global() variable in TestInternals.test_auto_garbage_corrected_ok.Color 4207 green = auto() global() variable in TestInternals.test_auto_garbage_corrected_fail.Color 4213 green = auto() global() variable in TestInternals.test_auto_order.Color 4240 green = auto() global() variable in TestInternals.test_auto_with_aliases.Color [all...] |
/foundation/arkui/ace_engine/test/unittest/core/pattern/security_component/mock/ |
H A D | sec_comp_base_mock.h | 42 uint8_t green; member
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/qrcode/ |
H A D | qrcode_modifier.h | 38 uint8_t green; member
|
/foundation/multimedia/image_framework/plugins/common/libs/image/libextplugin/include/heif_impl/heif_parser/box/ |
H A D | item_property_display_box.h | 31 DisplayPrimariesXY green;
member
|
/third_party/backends/backend/ |
H A D | umax_pp_low.h | 121 extern void sanei_umax_pp_gamma (int *red, int *green, int *blue);
|
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/src/main/cpp/ui/ |
H A D | OpenGLFunctions.h | 24 float green; member
|