HomeSort by relevance Sort by last modified time
    Searched defs:red (Results 126 - 150 of 369) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/qemu/distrib/sdl-1.2.15/src/video/Xext/extensions/
xf86vmode.h 158 float red; /* Red Gamma value */ member in struct:__anon13229
289 unsigned short* /* red array */,
298 unsigned short* /* red array */,
  /frameworks/native/opengl/libagl/
dxt.cpp 52 #define red(x) (((x) >> 11) & 0x1f) macro
235 int r0 = red(color0);
239 int r1 = red(color1);
365 int r0 = red(color0);
369 int r1 = red(color1);
522 int r0 = red(color0);
526 int r1 = red(color1);
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
SearchOrbView.java 114 int red = (int)(Color.red(color) * (1 - sBrightnessAlpha) + brightnessValue); local
118 return Color.argb(alpha, red, green, blue);
  /cts/tests/tests/animation/src/android/animation/cts/
AnimationActivity.java 187 public static final int RED = 0xffFF8080;
202 colorAnimator = ObjectAnimator.ofInt(this, "backgroundColor", RED, BLUE);
252 int red = (int)(Math.random() * 255); local
255 int color = 0xff000000 | red << 16 | green << 8 | blue;
256 int darkColor = 0xff000000 | red/4 << 16 | green/4 << 8 | blue/4;
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
AnimatorEvents.java 177 int red = (int)(Math.random() * 255); local
180 int color = 0xff000000 | red << 16 | green << 8 | blue;
182 int darkColor = 0xff000000 | red/4 << 16 | green/4 << 8 | blue/4;
  /external/chromium_org/third_party/angle/src/libGLESv2/
angletypes.h 31 T red; member in struct:gl::Color
36 Color() : red(0), green(0), blue(0), alpha(0) { }
37 Color(T r, T g, T b, T a) : red(r), green(g), blue(b), alpha(a) { }
  /external/deqp/modules/gles2/functional/
es2fShaderInvarianceTests.cpp 278 const tcu::Vec4 red = tcu::Vec4(1.0f, 0.0f, 0.0f, 1.0f); local
280 const tcu::Vec4 color = (passNdx == 0) ? (red) : (green);
281 const char* const colorStr = (passNdx == 0) ? ("red - purple") : ("green");
297 // Check there are no red pixels
320 const tcu::Vec4 red = tcu::Vec4(1.0f, 0.0f, 0.0f, 1.0f); local
322 const tcu::Vec4 color = (passNdx == 0) ? (red) : (green);
325 const char* const colorStr = (passNdx == 0) ? ("red - purple") : ("green");
342 // Check there are no red pixels
    [all...]
  /external/deqp/modules/gles3/functional/
es3fShaderInvarianceTests.cpp 278 const tcu::Vec4 red = tcu::Vec4(1.0f, 0.0f, 0.0f, 1.0f); local
280 const tcu::Vec4 color = (passNdx == 0) ? (red) : (green);
281 const char* const colorStr = (passNdx == 0) ? ("red - purple") : ("green");
297 // Check there are no red pixels
320 const tcu::Vec4 red = tcu::Vec4(1.0f, 0.0f, 0.0f, 1.0f); local
322 const tcu::Vec4 color = (passNdx == 0) ? (red) : (green);
325 const char* const colorStr = (passNdx == 0) ? ("red - purple") : ("green");
342 // Check there are no red pixels
    [all...]
  /external/libpng/contrib/gregbook/
rpng-x.c 706 ulg red, green, blue; local
713 red = *src++;
717 pixel = (red << RShift) |
727 red = (RShift < 0)? red << (-RShift) : red >> RShift;
730 pixel = (red & RMask) | (green & GMask) | (blue & BMask);
745 red = r;
749 red = bg_red;
756 alpha_composite(red, r, a, bg_red)
780 ush red, green, blue; local
    [all...]
  /external/libpng/contrib/libtests/
makepng.c 37 * black, green, white, red.
40 * transparent, red, green, blue.
45 * 1-bit: entry 0 is transparent-red, entry 1 is opaque-white
47 * entry 1: 40%-red
159 set_color(png_colorp color, png_bytep trans, unsigned int red,
163 color->red = gamma_table[red];
174 * 1-bit: entry 0 is transparent-red, entry 1 is opaque-white
176 * entry 1: 40%-red
234 /* color: green, red,blue,white *
478 const png_uint_32 red = colors[1]; local
497 const png_uint_32 red = colors[1]; local
    [all...]
  /external/libpng/
pngwrite.c 662 png_uint_32 red = (png_uint_32)((s0 - s1) & 0xffffL); local
664 *(rp ) = (png_byte)((red >> 8) & 0xff);
665 *(rp + 1) = (png_byte)(red & 0xff);
    [all...]
  /external/lldb/examples/python/
gdbremote.py 102 def red(self, fg = True): member in class:TerminalColors
103 '''Set the foreground or background color to red.
    [all...]
  /external/opencv/cv/src/
cvpyrsegmentation.cpp 46 float red; member in struct:_CvRGBf
127 /*#define _CV_RGB_DIST(a, b) _CV_MAX3((float)fabs((a).red - (b).red), \
137 float tr = (float)fabs(a.red - b.red);
146 float tr = (float)fabs(a.red - b.red);
757 p_cur[j].c.blue = p_cur[j].c.green = p_cur[j].c.red = 0;
768 p_cur[j].c.blue = p_cur[j].c.green = p_cur[j].c.red = 0;
778 stub.c.blue = stub.c.green = stub.c.red = 0
    [all...]
  /external/qemu/android/skin/
argb.h 87 #define ARGB_REDUCE(x,red) \
89 int _red = (red) >> 8; \
153 #define ARGB_REDUCE(x,red) \
155 int _red = (red) >> 8; \
269 unsigned red; local
277 red = ww;
280 red = (hh < 65536) ? (red*hh >> 16U) : red;
283 ARGB_REDUCE(spix,red);
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/gem/
SDL_gemvideo.h 64 Uint32 red, green, blue, alpha; /* Screen components */ member in struct:SDL_PrivateVideoData
110 #define VDI_redmask (this->hidden->red)
  /frameworks/support/v7/palette/src/android/support/v7/graphics/
ColorCutQuantizer.java 219 final int r = Color.red(color);
312 if (Color.red(color) >= dimensionMidPoint) {
346 redSum += colorPopulation * Color.red(color);
403 ColorUtils.RGBtoHSL(Color.red(color), Color.green(color), Color.blue(color), mTempHsl);
430 * @return true if the color lies close to the red side of the I line.
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/util/
TransitionImageView.java 199 mBgRedDiff = Color.red(dstColor) - Color.red(srcColor);
266 Color.red(mSrcBgColor) + (int) (mBgRedDiff * mProgress),
  /packages/wallpapers/HoloSpiral/src/com/android/wallpaper/holospiral/
HoloSpiralRS.java 255 float red = Color.red(color) / 255.0f; local
259 return new Float4(red, green, blue, alpha);
  /packages/wallpapers/NoiseField/src/com/android/noisefield/
NoiseFieldRS.java 148 float red = Float.parseFloat(values[2]); local
152 mVertexColors.set_color(i, new Float4(red, green, blue, 1.0f), false);
  /packages/wallpapers/PhaseBeam/src/com/android/phasebeam/
PhaseBeamRS.java 163 float red = new Float(values[2]); local
167 mVertexColors.set_color(i, new Float4(red, green, blue, 1.0f), false);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/X11/
Xcms.h 87 unsigned short red; /* scaled from 0x0000 to 0xffff */ member in struct:__anon24785
96 XcmsFloat red; /* 0.0 - 1.0 */ member in struct:__anon24786
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/
Xcms.h 87 unsigned short red; /* scaled from 0x0000 to 0xffff */ member in struct:__anon26521
96 XcmsFloat red; /* 0.0 - 1.0 */ member in struct:__anon26522
  /sdk/emulator/opengl/host/libs/Translator/EGL/
EglX11Api.cpp 87 int bSize,red,green,blue,alpha,depth,stencil; local
117 IS_SUCCESS(glXGetFBConfigAttrib(dpy,*frmt,GLX_RED_SIZE,&red));
159 return new EglConfig(red,green,blue,alpha,caveat,configId,depth,level,pMaxWidth,pMaxHeight,
  /bionic/libc/kernel/uapi/linux/
omapfb.h 199 struct fb_bitfield red; member in struct:omapfb_ovl_colormode
  /development/ndk/platforms/android-L/include/linux/
omapfb.h 199 struct fb_bitfield red; member in struct:omapfb_ovl_colormode

Completed in 1757 milliseconds

1 2 3 4 56 7 8 91011>>