/external/qemu/distrib/sdl-1.2.15/src/video/x11/ |
H A D | SDL_x11gamma_c.h | 27 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 D | SDL_x11gamma.c | 33 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 D | ShadowColor.java | 11 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/mesa/src/src/glsl/glcpp/tests/ |
H A D | 020-define-func-2-arg-multi.c | 2 foo(one fish, blue fish)
|
/external/mesa3d/src/glsl/glcpp/tests/ |
H A D | 020-define-func-2-arg-multi.c | 2 foo(one fish, blue fish)
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
H A D | RGBColor.idl | 25 readonly attribute CSSPrimitiveValue blue;
|
/external/clang/www/demo/ |
H A D | syntax.css | 4 .llvm_keyword { font-weight: bold; color: blue }
|
/external/clang/test/CodeGenCXX/ |
H A D | scoped-enums.cpp | 4 enum class Color { red, blue, green }; member in class:Color
|
/external/eigen/test/ |
H A D | runtest.sh | 7 blue='\E[34m' 14 echo -e $blue
|
/external/eigen/blas/testing/ |
H A D | runblastest.sh | 7 blue='\E[34m' 22 echo -e $blue 30 echo -e $blue 38 echo -e $blue
|
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
H A D | ColorDistance.cpp | 38 , m_blueDiff(toColor.blue() - fromColor.blue()) 58 Color ColorDistance::clampColor(int red, int green, int blue, int alpha) argument 60 return Color(clampColorValue(red), clampColorValue(green), clampColorValue(blue), clampColorValue(alpha)); 65 return Color(first.red() + second.red(), first.green() + second.green(), first.blue() + second.blue());
|
/external/eigen/test/eigen2/ |
H A D | runtest.sh | 7 blue='\E[34m' 15 echo -e $blue 24 echo -e $blue
|
/external/chromium_org/cc/trees/ |
H A D | layer_tree_host_pixeltest_readback.cc | 142 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local 144 green->AddChild(blue); 160 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local 162 green->AddChild(blue); 178 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local 180 green->AddChild(blue); 288 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local 290 green->AddChild(blue); 308 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local 310 green->AddChild(blue); 327 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local 351 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 496 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local 517 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local 538 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local 559 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local 581 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local 603 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local 671 scoped_refptr<ContentLayer> blue = ContentLayer::Create(&blue_client_); local 702 scoped_refptr<ContentLayer> blue = ContentLayer::Create(&blue_client_); local 734 scoped_refptr<ContentLayer> blue = ContentLayer::Create(&blue_client_); local 767 scoped_refptr<ContentLayer> blue = ContentLayer::Create(&blue_client_); local 866 scoped_refptr<ContentLayer> blue = ContentLayer::Create(&blue_client_); local 898 scoped_refptr<ContentLayer> blue = ContentLayer::Create(&blue_client_); local 930 scoped_refptr<ContentLayer> blue = ContentLayer::Create(&blue_client_); local 962 scoped_refptr<ContentLayer> blue = ContentLayer::Create(&blue_client_); local 992 scoped_refptr<SolidColorLayer> blue = CreateSolidColorLayer( local [all...] |
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/ |
H A D | TexturePixel.java | 19 public float intensity, red, green, blue, alpha;
field in class:TexturePixel 31 this.blue = pixel.blue;
44 this.blue = colorRGBA.b;
58 * the blue value
64 this.blue = b;
81 this.blue = pixelValue >= 0 ? pixelValue / 255.0f : 1.0f - (~pixelValue) / 255.0f;
103 this.blue = pixelValue >= 0 ? pixelValue / 255.0f : 1.0f - (~pixelValue) / 255.0f;
116 this.blue = pixelValue >= 0 ? pixelValue / 255.0f : 1.0f - (~pixelValue) / 255.0f;
123 this.blue [all...] |
/external/qemu/distrib/sdl-1.2.15/src/video/ |
H A D | SDL_gamma.c | 93 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/WebKit/Source/platform/mac/ |
H A D | ColorMac.mm | 59 [c getRed:&redComponent green:&greenComponent blue:&blueComponent alpha:&alpha]; 75 DEFINE_STATIC_LOCAL(RetainPtr<NSColor>, clearColor, ([NSColor colorWithDeviceRed:0 green:0 blue:0 alpha:0])); 79 DEFINE_STATIC_LOCAL(RetainPtr<NSColor>, blackColor, ([NSColor colorWithDeviceRed:0 green:0 blue:0 alpha:1])); 83 DEFINE_STATIC_LOCAL(RetainPtr<NSColor>, whiteColor, ([NSColor colorWithDeviceRed:1 green:1 blue:1 alpha:1])); 98 blue:static_cast<CGFloat>(color.blue()) / 255
|
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
H A D | accum.h | 50 _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 D | accum.h | 50 _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 D | t_dd_vertex.h | 36 GLubyte alpha, blue, green, red; member in struct:__anon13734 38 GLubyte red, green, blue, alpha; 44 GLubyte alpha, red, green, blue; member in struct:__anon13735 46 GLubyte blue, green, red, alpha;
|
/external/mesa3d/src/mesa/tnl_dd/ |
H A D | t_dd_vertex.h | 36 GLubyte alpha, blue, green, red; member in struct:__anon24219 38 GLubyte red, green, blue, alpha; 44 GLubyte alpha, red, green, blue; member in struct:__anon24220 46 GLubyte blue, green, red, alpha;
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/ |
H A D | FEColorMatrix.cpp | 76 inline void matrix(float& red, float& green, float& blue, float& alpha, const Vector<float>& values) argument 78 float r = values[0] * red + values[1] * green + values[2] * blue + values[3] * alpha + values[4] * 255; 79 float g = values[5] * red + values[6] * green + values[7] * blue + values[8] * alpha + values[9] * 255; 80 float b = values[10] * red + values[11] * green + values[12] * blue + values[13] * alpha + values[14] * 255; 81 float a = values[15] * red + values[16] * green + values[17] * blue + values[18] * alpha + values[19] * 255; 85 blue = b; 89 inline void saturateAndHueRotate(float& red, float& green, float& blue, const float* components) argument 91 float r = red * components[0] + green * components[1] + blue * components[2]; 92 float g = red * components[3] + green * components[4] + blue * components[5]; 93 float b = red * components[6] + green * components[7] + blue * component 100 luminance(float& red, float& green, float& blue, float& alpha) argument 122 float blue = pixelArray->item(pixelByteOffset + 2); local [all...] |
/external/chromium_org/third_party/skia/src/animator/ |
H A D | SkDrawColor.cpp | 27 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 D | SkDrawColor.cpp | 27 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/libpng/contrib/gregbook/ |
H A D | readpng.c | 154 int readpng_get_bgcolor(uch *red, uch *green, uch *blue) argument 173 * and blue values, regardless of color_type: */ 184 *blue = pBackground->blue >> 8; 187 *red = *green = *blue = pBackground->gray? 255 : 0; 189 *red = *green = *blue = (255/3) * pBackground->gray; 191 *red = *green = *blue = (255/15) * pBackground->gray; 195 *blue = (uch)pBackground->blue;
|
/external/pixman/pixman/ |
H A D | pixman-solid-fill.c | 36 (color->blue >> 8); 47 result.b = pixman_unorm_to_float (color->blue, 16);
|