Searched refs:blue (Results 1 - 25 of 473) sorted by relevance

1234567891011>>

/external/qemu/distrib/sdl-1.2.15/src/video/x11/
H A DSDL_x11gamma_c.h27 extern int X11_SetVidModeGamma(_THIS, float red, float green, float blue);
28 extern int X11_GetVidModeGamma(_THIS, float *red, float *green, float *blue);
H A DSDL_x11gamma.c33 static int X11_SetGammaNoLock(_THIS, float red, float green, float blue) argument
57 if ( blue < MIN_GAMMA ) {
58 gamma.blue = MIN_GAMMA;
60 if ( blue > MAX_GAMMA ) {
61 gamma.blue = MAX_GAMMA;
63 gamma.blue = blue;
71 gamma_saved[2] = gamma.blue;
83 int X11_SetVidModeGamma(_THIS, float red, float green, float blue) argument
88 result = X11_SetGammaNoLock(this, red, green, blue);
94 X11_GetGammaNoLock(_THIS, float *red, float *green, float *blue) argument
110 X11_GetVidModeGamma(_THIS, float *red, float *green, float *blue) argument
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowColor.java11 public static int rgb(int red, int green, int blue) { argument
12 return argb(0xff, red, green, blue);
16 public static int argb(int alpha, int red, int green, int blue) { argument
17 return (alpha << 24) | (red << 16) | (green << 8) | blue;
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DColorDistance.cpp29 return Color(first.red() + second.red(), first.green() + second.green(), first.blue() + second.blue());
36 int blueDiff = toColor.blue() - fromColor.blue();
/external/chromium_org/third_party/mesa/src/src/glsl/glcpp/tests/
H A D020-define-func-2-arg-multi.c2 foo(one fish, blue fish)
/external/mesa3d/src/glsl/glcpp/tests/
H A D020-define-func-2-arg-multi.c2 foo(one fish, blue fish)
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DRGBColor.idl27 readonly attribute CSSPrimitiveValue blue;
/external/clang/www/demo/
H A Dsyntax.css4 .llvm_keyword { font-weight: bold; color: blue }
/external/eigen/test/
H A Druntest.sh7 blue='\E[34m'
14 echo -e $blue
/external/eigen/blas/testing/
H A Drunblastest.sh7 blue='\E[34m'
22 echo -e $blue
30 echo -e $blue
38 echo -e $blue
/external/eigen/test/eigen2/
H A Druntest.sh7 blue='\E[34m'
15 echo -e $blue
24 echo -e $blue
/external/chromium_org/third_party/WebKit/Source/platform/mac/
H A DColorMac.mm42 DEFINE_STATIC_LOCAL(RetainPtr<NSColor>, clearColor, ([NSColor colorWithDeviceRed:0 green:0 blue:0 alpha:0]));
46 DEFINE_STATIC_LOCAL(RetainPtr<NSColor>, blackColor, ([NSColor colorWithDeviceRed:0 green:0 blue:0 alpha:1]));
50 DEFINE_STATIC_LOCAL(RetainPtr<NSColor>, whiteColor, ([NSColor colorWithDeviceRed:1 green:1 blue:1 alpha:1]));
65 blue:static_cast<CGFloat>(color.blue()) / 255
/external/qemu/distrib/sdl-1.2.15/src/video/
H A DSDL_gamma.c93 int SDL_SetGamma(float red, float green, float blue) argument
106 CalculateGammaRamp(blue, ramp[2]);
111 succeeded = video->SetGamma(this, red, green, blue);
119 int SDL_GetGamma(float *red, float *green, float *blue) argument
134 CalculateGammaFromRamp(blue, ramp[2]);
139 succeeded = video->GetGamma(this, red, green, blue);
144 int SDL_SetGammaRamp(const Uint16 *red, const Uint16 *green, const Uint16 *blue) argument
169 if ( blue ) {
170 SDL_memcpy(&video->gamma[2*256], blue, 256*sizeof(*video->gamma));
196 int SDL_GetGammaRamp(Uint16 *red, Uint16 *green, Uint16 *blue) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Daccum.h50 _mesa_ClearAccum( GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha );
66 _mesa_ClearAccum( GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha ) argument
/external/mesa3d/src/mesa/main/
H A Daccum.h50 _mesa_ClearAccum( GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha );
66 _mesa_ClearAccum( GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha ) argument
/external/chromium_org/third_party/mesa/src/src/mesa/tnl_dd/
H A Dt_dd_vertex.h36 GLubyte alpha, blue, green, red; member in struct:__anon14588
38 GLubyte red, green, blue, alpha;
44 GLubyte alpha, red, green, blue; member in struct:__anon14589
46 GLubyte blue, green, red, alpha;
/external/clang/test/CodeGenCXX/
H A Dscoped-enums.cpp4 enum class Color { red, blue, green }; member in class:Color
/external/libcxx/test/utilities/function.objects/unord.hash/
H A Denum.pass.cpp24 enum class Colors { red, orange, yellow, green, blue, indigo, violet }; member in class:Colors
26 enum class LongColors : short { red, orange, yellow, green, blue, indigo, violet }; member in class:Cardinals::LongColors
27 enum class ShortColors : long { red, orange, yellow, green, blue, indigo, violet }; member in class:Cardinals::ShortColors
28 enum class EightBitColors : uint8_t { red, orange, yellow, green, blue, indigo, violet }; member in class:Cardinals::EightBitColors
/external/mesa3d/src/mesa/tnl_dd/
H A Dt_dd_vertex.h36 GLubyte alpha, blue, green, red; member in struct:__anon27999
38 GLubyte red, green, blue, alpha;
44 GLubyte alpha, red, green, blue; member in struct:__anon28000
46 GLubyte blue, green, red, alpha;
/external/chromium_org/cc/trees/
H A Dlayer_tree_host_pixeltest_readback.cc167 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
169 green->AddChild(blue);
185 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
187 green->AddChild(blue);
203 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
205 green->AddChild(blue);
313 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
315 green->AddChild(blue);
333 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
335 green->AddChild(blue);
352 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
376 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
401 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
426 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
451 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
476 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
501 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
522 scoped_refptr<SolidColorLayer> blue = local
542 scoped_refptr<SolidColorLayer> blue = local
562 scoped_refptr<SolidColorLayer> blue = local
583 scoped_refptr<SolidColorLayer> blue = local
604 scoped_refptr<SolidColorLayer> blue = local
625 scoped_refptr<SolidColorLayer> blue = local
644 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
665 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
686 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
707 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
729 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
751 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
777 scoped_refptr<SolidColorLayer> blue = local
801 scoped_refptr<SolidColorLayer> blue = local
825 scoped_refptr<SolidColorLayer> blue = local
851 scoped_refptr<SolidColorLayer> blue = local
877 scoped_refptr<SolidColorLayer> blue = local
902 scoped_refptr<SolidColorLayer> blue = local
957 scoped_refptr<FakePictureLayer> blue = local
986 scoped_refptr<FakePictureLayer> blue = local
1016 scoped_refptr<FakePictureLayer> blue = local
1047 scoped_refptr<FakePictureLayer> blue = local
1075 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local
[all...]
/external/chromium_org/third_party/skia/src/animator/
H A DSkDrawColor.cpp27 SkScalar blue = SkIntToScalar(SkColorGetB(color)); local
28 SkScalar min = SkMinScalar(SkMinScalar(red, green), blue);
29 SkScalar value = SkMaxScalar(SkMaxScalar(red, green), blue);
42 hue = SkScalarMul(green - blue, part60);
47 hue = 120 * SK_Scalar1 + SkScalarMul(blue - red, part60);
48 else // blue == value
67 SkScalar blue SK_INIT_TO_AVOID_WARNING;
69 red = green = blue = value;
79 case 0: red = value; green = t; blue = p; break;
80 case 1: red = q; green = value; blue
[all...]
/external/skia/src/animator/
H A DSkDrawColor.cpp27 SkScalar blue = SkIntToScalar(SkColorGetB(color)); local
28 SkScalar min = SkMinScalar(SkMinScalar(red, green), blue);
29 SkScalar value = SkMaxScalar(SkMaxScalar(red, green), blue);
42 hue = SkScalarMul(green - blue, part60);
47 hue = 120 * SK_Scalar1 + SkScalarMul(blue - red, part60);
48 else // blue == value
67 SkScalar blue SK_INIT_TO_AVOID_WARNING;
69 red = green = blue = value;
79 case 0: red = value; green = t; blue = p; break;
80 case 1: red = q; green = value; blue
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/login/
H A Dgaia.css23 .blue-button {
38 .blue-button:hover {
47 .blue-button:focus {
51 .blue-button:focus:hover {
/external/libpng/contrib/gregbook/
H A Dreadpng.c155 int readpng_get_bgcolor(uch *red, uch *green, uch *blue) argument
174 * and blue values, regardless of color_type: */
185 *blue = pBackground->blue >> 8;
188 *red = *green = *blue = pBackground->gray? 255 : 0;
190 *red = *green = *blue = (255/3) * pBackground->gray;
192 *red = *green = *blue = (255/15) * pBackground->gray;
196 *blue = (uch)pBackground->blue;
/external/pixman/pixman/
H A Dpixman-solid-fill.c36 (color->blue >> 8);
47 result.b = pixman_unorm_to_float (color->blue, 16);

Completed in 1653 milliseconds

1234567891011>>