Searched defs:red (Results 1 - 25 of 151) sorted by relevance

1234567

/external/clang/test/CodeGenCXX/
H A Dscoped-enums.cpp4 enum class Color { red, blue, green }; member in class:Color
8 f(Color::red);
H A D2007-04-10-PackedUnion.cpp8 float red; member in struct:ABCS
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DRGBColor.cpp38 PassRefPtr<CSSPrimitiveValue> RGBColor::red() function in class:WebCore::RGBColor
/external/chromium_org/ui/gfx/
H A Dcolor_utils_unittest.cc30 SkColor red = SkColorSetARGB(128, 255, 0, 0); local
33 EXPECT_EQ(SkColorGetA(red), SkColorGetA(result));
34 EXPECT_EQ(SkColorGetR(red), SkColorGetR(result));
35 EXPECT_EQ(SkColorGetG(red), SkColorGetG(result));
36 EXPECT_EQ(SkColorGetB(red), SkColorGetB(result));
/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/clang/test/Sema/
H A Dattr-deprecated-message.c18 typedef enum {red, green, blue} Color __attribute__((deprecated("Please avoid Color"))); // expected-note {{'Color' declared here}} enumerator in enum:__anon16266
/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/pixman/test/
H A Da1-trap-test.c17 pixman_color_t red = { 0xffff, 0x0000, 0x0000, 0xffff }; local
34 src_img = pixman_image_create_solid_fill (&red);
/external/ppp/pppd/plugins/
H A Dpassprompt.c33 ssize_t red; local
73 red = read(p[0], passwd + readgood, MAXSECRETLEN-1 - readgood);
74 if (red == 0)
76 if (red < 0) {
83 readgood += red;
H A Dpasswordfd.c35 int readgood, red; local
50 red = read (passwdfd, passwd + readgood, MAXSECRETLEN - 1 - readgood);
51 if (red == 0)
53 if (red < 0) {
58 readgood += red;
/external/qemu/distrib/sdl-1.2.15/src/video/x11/
H A DSDL_x11gamma.c33 static int X11_SetGammaNoLock(_THIS, float red, float green, float blue) argument
41 if ( red < MIN_GAMMA ) {
42 gamma.red = MIN_GAMMA;
44 if ( red > MAX_GAMMA ) {
45 gamma.red = MAX_GAMMA;
47 gamma.red = red;
69 gamma_saved[0] = gamma.red;
83 int X11_SetVidModeGamma(_THIS, float red, float green, float blue) argument
88 result = X11_SetGammaNoLock(this, red, gree
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/gpu/command_buffer/tests/
H A Docclusion_query_unittests.cc114 static float red[] = { 1.0f, 0.0f, 0.0f, 1.0f }; local
115 DrawRect(0, 0.0f, 0.50f, red);
132 DrawRect(1, 0.0f, 0.50f, red);
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DColorDistance.cpp36 : m_redDiff(toColor.red() - fromColor.red())
65 Color ColorDistance::clampColor(int red, int green, int blue, int alpha) argument
67 return Color(clampColorValue(red), clampColorValue(green), clampColorValue(blue), clampColorValue(alpha));
72 return Color(first.red() + second.red(), first.green() + second.green(), first.blue() + second.blue());
77 return Color(color.red() + m_redDiff, color.green() + m_greenDiff, color.blue() + m_blueDiff);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
H A Dsvga_state_fs.c79 static const float red[4] = { 1.0, 0.0, 0.0, 0.0 }; local
91 src = ureg_DECL_immediate(ureg, red, 4);
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dinttree.h9 * interval trees implemented using red-black-trees as described in
20 int red; /* if red=0 then the node is black */ member in struct:IntervalTreeNode
/external/clang/test/SemaTemplate/
H A Dinstantiate-c99.cpp31 unsigned char red, green, blue; member in struct:Color
/external/iproute2/tc/
H A Dq_sfq.c40 int ok = 0, red = 0; local
105 red++;
112 red++;
119 red++;
126 red++;
133 red++;
140 red++;
143 red++;
146 red++;
157 if (red) {
[all...]
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/texture/plugins/
H A DTGALoader.java183 entry.red = (byte)(int)(getBitsAsByte(cMapData, offset, bitsPerColor) * scalar);
211 byte red = 0;
252 // red = dis.readByte();
253 // rawData[rawDataIndex++] = red;
267 red = dis.readByte();
269 rawData[rawDataIndex++] = red;
280 byte red = 0;
301 red = dis.readByte();
304 rawData[rawDataIndex++] = red;
315 red
510 byte red, green, blue, alpha; field in class:TGALoader.ColorMapEntry
[all...]
/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
241 red = rle_row[0];
245 *red++ = GETJSAMPLE(*output_row++);
/external/libpng/contrib/gregbook/
H A Dreadppm.c133 int readpng_get_bgcolor(uch *red, uch *green, uch *blue) argument
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_state_fs.c79 static const float red[4] = { 1.0, 0.0, 0.0, 0.0 }; local
91 src = ureg_DECL_immediate(ureg, red, 4);
/external/qemu/distrib/jpeg-6b/
H A Dwrrle.c176 rle_pixel **rle_row, *red, *green, *blue; local
241 red = rle_row[0];
245 *red++ = GETJSAMPLE(*output_row++);
/external/qemu/distrib/sdl-1.2.15/src/video/
H A DSDL_gamma.c93 int SDL_SetGamma(float red, float green, float blue) argument
104 CalculateGammaRamp(red, ramp[0]);
111 succeeded = video->SetGamma(this, red, green, blue);
119 int SDL_GetGamma(float *red, float *green, float *blue) argument
132 CalculateGammaFromRamp(red, ramp[0]);
139 succeeded = video->GetGamma(this, red, green, blue);
144 int SDL_SetGammaRamp(const Uint16 *red, const Uint16 *green, const Uint16 *blue) argument
163 if ( red ) {
164 SDL_memcpy(&video->gamma[0*256], red, 256*sizeof(*video->gamma));
196 int SDL_GetGammaRamp(Uint16 *red, Uint1 argument
[all...]

Completed in 728 milliseconds

1234567