HomeSort by relevance Sort by last modified time
    Searched refs:red (Results 1 - 25 of 620) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGenCXX/
scoped-enums.cpp 4 enum class Color { red, blue, green }; member in class:Color
8 f(Color::red);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
GLColor.java 21 public final int red; field in class:GLColor
26 public GLColor(int red, int green, int blue, int alpha) {
27 this.red = red;
33 public GLColor(int red, int green, int blue) {
34 this.red = red;
44 return (red == color.red &&
  /external/qemu/distrib/sdl-1.2.15/src/video/x11/
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);
SDL_x11gamma.c 33 static int X11_SetGammaNoLock(_THIS, float red, float green, float blue)
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)
88 result = X11_SetGammaNoLock(this, red, green, blue)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/gtk/
ColorGtk.cpp 29 : m_color(makeRGB(c.red >> 8, c.green >> 8, c.blue >> 8))
36 : m_color(makeRGBA(static_cast<int>(c.red * 255),
46 double red, green, blue, alpha; local
47 getRGBA(red, green, blue, alpha);
48 GdkRGBA rgba = { red, green, blue, alpha };
  /frameworks/av/media/libnbaio/
MonoPipeReader.cpp 60 ssize_t red = availableToRead(); local
61 if (CC_UNLIKELY(red <= 0)) {
65 return red;
67 if (CC_LIKELY((size_t) red > count)) {
68 red = count;
72 if (part1 > (size_t) red) {
73 part1 = red;
78 size_t part2 = red - part1;
83 mPipe->updateFrontAndNRPTS(red + mPipe->mFront, nextReadPTS);
84 mFramesRead += red;
    [all...]
PipeReader.cpp 74 size_t red = mPipe.mMaxFrames - front; local
75 if (CC_LIKELY(red > count)) {
76 red = count;
79 memcpy(buffer, (char *) mPipe.mBuffer + (front << mBitShift), red << mBitShift);
81 if (CC_UNLIKELY(front + red == mPipe.mMaxFrames)) {
82 if (CC_UNLIKELY((count -= red) > front)) {
86 memcpy((char *) buffer + (red << mBitShift), mPipe.mBuffer, count << mBitShift);
87 red += count;
90 mFront += red;
91 mFramesRead += red;
    [all...]
  /external/mesa3d/src/glsl/glcpp/tests/
020-define-func-2-arg-multi.c 1 #define foo(x,y) x,two fish,red fish,y
  /external/webkit/Source/WebCore/platform/graphics/haiku/
ColorHaiku.cpp 36 : m_color(makeRGBA(color.red, color.green, color.blue, color.alpha))
43 return make_color(red(), green(), blue(), alpha());
  /external/webkit/Source/WebCore/platform/graphics/qt/
ColorQt.cpp 36 : m_color(makeRGBA(c.red(), c.green(), c.blue(), c.alpha()))
44 return QColor(red(), green(), blue(), alpha());
  /external/ppp/pppd/plugins/
passwordfd.c 35 int readgood, red; local
50 red = read (passwdfd, passwd + readgood, MAXSECRETLEN - 1 - readgood);
51 if (red == 0)
53 if (red < 0) {
58 readgood += red;
passprompt.c 33 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;
  /external/webkit/Source/WebCore/platform/graphics/filters/
FEColorMatrix.cpp 76 inline void matrix(double& red, double& green, double& blue, double& alpha, const Vector<float>& values)
78 double r = values[0] * red + values[1] * green + values[2] * blue + values[3] * alpha + values[4] * 255;
79 double g = values[5] * red + values[6] * green + values[7] * blue + values[8] * alpha + values[9] * 255;
80 double b = values[10] * red + values[11] * green + values[12] * blue + values[13] * alpha + values[14] * 255;
81 double a = values[15] * red + values[16] * green + values[17] * blue + values[18] * alpha + values[19] * 255;
83 red = r;
89 inline void saturate(double& red, double& green, double& blue, const float& s)
91 double r = (0.213 + 0.787 * s) * red + (0.715 - 0.715 * s) * green + (0.072 - 0.072 * s) * blue;
92 double g = (0.213 - 0.213 * s) * red + (0.715 + 0.285 * s) * green + (0.072 - 0.072 * s) * blue;
93 double b = (0.213 - 0.213 * s) * red + (0.715 - 0.715 * s) * green + (0.072 + 0.928 * s) * blue
132 double red = pixelArray->get(pixelByteOffset); local
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
TexturePixel.java 19 public float intensity, red, green, blue, alpha; field in class:TexturePixel
29 this.red = pixel.red;
42 this.red = colorRGBA.r;
54 * the red value
62 this.red = r;
77 this.red = pixelValue >= 0 ? pixelValue / 255.0f : 1.0f - (~pixelValue) / 255.0f;
107 this.red = pixelValue >= 0 ? pixelValue / 255.0f : 1.0f - (~pixelValue) / 255.0f;
112 this.red = pixelValue >= 0 ? pixelValue / 255.0f : 1.0f - (~pixelValue) / 255.0f;
127 this.red = pixelValue >= 0 ? pixelValue / 255.0f : 1.0f - (~pixelValue) / 255.0f;
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_gamma.c 93 int SDL_SetGamma(float red, float green, float blue)
104 CalculateGammaRamp(red, ramp[0]);
111 succeeded = video->SetGamma(this, red, green, blue);
119 int SDL_GetGamma(float *red, float *green, float *blue)
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)
163 if ( red ) {
164 SDL_memcpy(&video->gamma[0*256], red, 256*sizeof(*video->gamma));
196 int SDL_GetGammaRamp(Uint16 *red, Uint16 *green, Uint16 *blue
    [all...]
  /device/google/accessory/demokit/app/src/com/google/android/DemoKit/
ColorWheelLEDController.java 18 int red = Color.red(color) / 8; local
22 mActivity.sendCommand(DemoKitActivity.LED_SERVO_COMMAND,(byte)0,(byte)red);
26 mActivity.sendCommand(DemoKitActivity.LED_SERVO_COMMAND,(byte)3,(byte)red);
30 mActivity.sendCommand(DemoKitActivity.LED_SERVO_COMMAND,(byte)6,(byte)red);
  /external/webkit/Source/WebCore/svg/
ColorDistance.cpp 37 : m_redDiff(toColor.red() - fromColor.red())
68 return Color(clampColorValue(first.red() + second.red()),
75 return Color(clampColorValue(color.red() + m_redDiff),
  /cts/tests/tests/graphics/src/android/graphics/cts/
LinearGradientTest.java 34 int[] color = { Color.BLUE, Color.GREEN, Color.RED };
47 // GREEN -> RED, G sub-value decreasing while R sub-value increasing
50 assertTrue(Color.red(b.getPixel(10, 15)) < Color.red(b.getPixel(10, 20)));
51 assertTrue(Color.red(b.getPixel(10, 20)) < Color.red(b.getPixel(10, 25)));
53 lg = new LinearGradient(0, 0, 0, 40, Color.RED, Color.BLUE, TileMode.CLAMP);
58 // RED -> BLUE, R sub-value decreasing while B sub-value increasing
59 assertTrue(Color.red(b.getPixel(10, 0)) > Color.red(b.getPixel(10, 15)))
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/wx/
ColorWx.cpp 36 m_color = makeRGBA((int)color.Red(), (int)color.Green(), (int)color.Blue(), (int)color.Alpha());
41 return wxColour(red(), green(), blue(), alpha());
  /frameworks/base/graphics/java/android/graphics/
Color.java 26 * Colors are represented as packed ints, made up of 4 bytes: alpha, red,
29 * components are stored as follows (alpha << 24) | (red << 16) |
33 * no contributions from red, green, or blue), and opaque-white would be
42 public static final int RED = 0xFFFF0000;
59 * Return the red component of a color int. This is the same as saying
62 public static int red(int color) { method in class:Color
83 * Return a color-int from red, green, blue components.
88 * @param red Red component [0..255] of the color
92 public static int rgb(int red, int green, int blue)
258 float red = 0.0f; local
    [all...]
  /gdk/samples/PhotoEditor/jni/
whiteblack.cpp 76 int32_t red = src->rgba8[0]; local
81 int32_t xform_red = xform[red];
85 red = xform[red + 1] - xform_red;
90 int32_t diff_red = red * dither >> 8;
94 red = (xform_red + diff_red - (red >> 1)) >> 8;
98 red = clamp(red, 0, 255);
102 *dst = (alpha << 24) | (blue << 16) | (green << 8) | red;
    [all...]
  /external/skia/src/animator/
SkDrawColor.cpp 25 SkScalar red = SkIntToScalar(SkColorGetR(color)); local
28 SkScalar min = SkMinScalar(SkMinScalar(red, green), blue);
29 SkScalar value = SkMaxScalar(SkMaxScalar(red, green), blue);
41 if (red == value) {
47 hue = 120 * SK_Scalar1 + SkScalarMul(blue - red, part60);
49 hue = 240 * SK_Scalar1 + SkScalarMul(red - green, part60);
55 #if defined _WIN32 && _MSC_VER >= 1300 // disable 'red', etc. may be used without having been initialized
65 SkScalar red SK_INIT_TO_AVOID_WARNING;
69 red = green = blue = value;
79 case 0: red = value; green = t; blue = p; break
    [all...]
  /sdk/traceview/src/com/android/traceview/
ColorController.java 36 new RGB(255, 0, 0), // red
42 new RGB(150, 0, 0), // dark red
46 new RGB(255, 150, 150), // light red
59 return requestColor(display, rgb.red, rgb.green, rgb.blue);
63 return requestColorSquare(display, rgb.red, rgb.green, rgb.blue);
66 public static Color requestColor(Display display, int red, int green, int blue) {
67 int key = (red << 16) | (green << 8) | blue;
70 color = new Color(display, red, green, blue);
76 public static Image requestColorSquare(Display display, int red, int green, int blue) {
77 int key = (red << 16) | (green << 8) | blue
    [all...]
  /external/libpng/contrib/gregbook/
readpng.c 154 int readpng_get_bgcolor(uch *red, uch *green, uch *blue)
172 * takes a pointer to a pointer, and it always returns valid red, green
182 *red = pBackground->red >> 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;
193 *red = (uch)pBackground->red;
  /external/webkit/Source/WebCore/css/
RGBColor.idl 25 readonly attribute CSSPrimitiveValue red;

Completed in 794 milliseconds

1 2 3 4 5 6 7 8 91011>>