Searched defs:blue (Results 1 - 25 of 106) sorted by relevance

12345

/external/clang/test/CodeGenCXX/
H A D2007-04-10-PackedUnion.cpp10 float blue; member in struct:ABCS
H A Dscoped-enums.cpp4 enum class Color { red, blue, green }; member in class:Color
/external/clang/test/Sema/
H A Dattr-deprecated-message.c18 typedef enum {red, green, blue} Color __attribute__((deprecated("Please avoid Color"))); // expected-note {{'Color' has been explicitly marked deprecated here}} enumerator in enum:__anon2313
/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
H A Dclear.c65 * \param blue blue color component.
75 _mesa_ClearColor( GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha ) argument
83 tmp[2] = blue;
/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/skia/src/codec/
H A DSkMasks.h25 uint32_t blue; member in struct:SkMasks::InputMasks
74 SkMasks(const MaskInfo red, const MaskInfo green, const MaskInfo blue,
H A DSkMasks.cpp134 masks.blue &= (1 << bitsPerPixel) - 1;
139 if (((masks.red & masks.green) | (masks.red & masks.blue) |
140 (masks.red & masks.alpha) | (masks.green & masks.blue) |
141 (masks.green & masks.alpha) | (masks.blue & masks.alpha)) != 0) {
148 const MaskInfo blue = process_mask(masks.blue, bitsPerPixel); local
151 return SkNEW_ARGS(SkMasks, (red, green, blue, alpha));
156 const MaskInfo blue, const MaskInfo alpha)
159 , fBlue(blue)
155 SkMasks(const MaskInfo red, const MaskInfo green, const MaskInfo blue, const MaskInfo alpha) argument
/external/skia/gm/
H A Dtexdata.cpp47 static const SkPMColor blue = SkPackARGB32(0x80, 0x00, 0x00, 0x80); variable
122 ((x + y) % 2) ? (i ? green : red) : blue;
H A Dtestimagefilters.cpp62 SkImageFilter* blue = SkColorFilterImageFilter::Create(cf); local
63 SkAutoUnref aur4(blue);
65 return SkMergeImageFilter::Create(compose, blue);
79 SkImageFilter* blue = SkColorFilterImageFilter::Create(cf); local
80 SkAutoUnref aur4(blue);
82 return SkMergeImageFilter::Create(compose, blue);
/external/clang/test/SemaTemplate/
H A Dinstantiate-c99.cpp31 unsigned char red, green, blue; member in struct:Color
H A Dinstantiate-non-dependent-types.cpp41 enum Colors {red, green, blue}; enumerator in enum:Colors
/external/deqp/framework/common/
H A DtcuPixelFormat.hpp42 PixelFormat (int red, int green, int blue, int alpha) argument
45 , blueBits(blue)
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/texture/plugins/
H A DTGALoader.java185 entry.blue = (byte)(int)(getBitsAsByte(cMapData, offset+(2*bitsPerColor), bitsPerColor) * scalar);
213 byte blue = 0;
250 // blue = dis.readByte();
255 // rawData[rawDataIndex++] = blue;
265 blue = dis.readByte();
271 rawData[rawDataIndex++] = blue;
282 byte blue = 0;
299 blue = dis.readByte();
306 rawData[rawDataIndex++] = blue;
313 blue
510 byte red, green, blue, alpha; field in class:TGALoader.ColorMapEntry
[all...]
H A DHDRLoader.java64 public static void convertFloatToRGBE(byte[] rgbe, float red, float green, float blue){ argument
67 if (blue > max) max = blue;
75 rgbe[2] = (byte) ((blue / divider) * 255.0);
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
H A DImageBasedHeightMap.java89 protected float calculateHeight(float red, float green, float blue) { argument
90 return (float) (0.299 * red + 0.587 * green + 0.114 * blue);
/external/jpeg/
H A Dwrrle.c176 rle_pixel **rle_row, *red, *green, *blue; local
243 blue = rle_row[2];
247 *blue++ = GETJSAMPLE(*output_row++);
/external/libcxx/test/std/utilities/function.objects/unord.hash/
H A Denum.pass.cpp22 enum class Colors { red, orange, yellow, green, blue, indigo, violet }; member in class:Colors
24 enum class LongColors : short { red, orange, yellow, green, blue, indigo, violet }; member in class:Cardinals::LongColors
25 enum class ShortColors : long { red, orange, yellow, green, blue, indigo, violet }; member in class:Cardinals::ShortColors
26 enum class EightBitColors : uint8_t { red, orange, yellow, green, blue, indigo, violet }; member in class:Cardinals::EightBitColors
/external/libpng/contrib/gregbook/
H A Dreadppm.c133 int readpng_get_bgcolor(uch *red, uch *green, uch *blue) argument
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/skia/bench/
H A DTileBench.cpp20 float blue = 255.0f; local
24 *bm->getAddr32(0, y) = SkColorSetRGB(0, 0, (U8CPU) blue);
25 blue -= deltaB;
/external/freetype/src/sfnt/
H A Dpngshim.c75 unsigned int blue = base[2]; local
82 blue = multiply_alpha( alpha, blue );
85 base[0] = (unsigned char)blue;
110 unsigned int blue = base[2]; local
113 base[0] = (unsigned char)blue;
/external/mesa3d/src/mesa/tnl_dd/
H A Dt_dd_vertex.h36 GLubyte alpha, blue, green, red; member in struct:__anon12842
38 GLubyte red, green, blue, alpha;
44 GLubyte alpha, red, green, blue; member in struct:__anon12843
46 GLubyte blue, green, red, alpha;
/external/pdfium/samples/fx_lpng/lpng_v163/
H A Dfx_pngwtran.c265 shift_start[channels] = row_info->bit_depth - bit_depth->blue;
266 shift_dec[channels] = bit_depth->blue;
625 png_uint_32 blue = (png_uint_32)((s2 - s1) & 0xffffL); local
628 *(rp + 4) = (png_byte)((blue >> 8) & 0xff);
629 *(rp + 5) = (png_byte)(blue & 0xff);
/external/pdfium/third_party/freetype/src/sfnt/
H A Dpngshim.c74 unsigned int blue = base[2]; local
81 blue = multiply_alpha( alpha, blue );
84 base[0] = blue;
109 unsigned int blue = base[2]; local
112 base[0] = blue;

Completed in 937 milliseconds

12345