HomeSort by relevance Sort by last modified time
    Searched refs:blue (Results 76 - 100 of 820) sorted by null

1 2 34 5 6 7 8 91011>>

  /development/samples/devbytes/animation/LayoutTransChanging/src/com/example/android/layouttranschanging/
LayoutTransChanging.java 103 int blue = (int)(Math.random() * 128 + 127); local
105 (green << 8) | blue;
  /external/chromium_org/chrome/browser/resources/instant/
instant.css 48 color: blue;
  /external/chromium_org/third_party/WebKit/Source/core/css/
StyleColor.h 85 int blue() const { return m_color.blue(); } function in class:WebCore::StyleColor
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/x11/
xm_tri.c 75 FixedToInt(span.green), FixedToInt(span.blue)); \
81 span.blue += span.blueStep; \
109 FixedToInt(span.green), FixedToInt(span.blue), \
115 span.blue += span.blueStep; \
144 FixedToInt(span.green), FixedToInt(span.blue), \
150 span.blue += span.blueStep; \
178 FixedToInt(span.green), FixedToInt(span.blue)); \
183 span.blue += span.blueStep; \
211 ptr->b = FixedToInt(span.blue); \
216 span.blue += span.blueStep;
    [all...]
  /external/chromium_org/tools/perf/page_sets/tough_canvas_cases/canvas2d_balls_common/
bouncing_balls_draw_ball_as_text.js 14 canvasContext.fillStyle = 'blue';
  /external/mesa3d/src/mesa/drivers/x11/
xm_tri.c 75 FixedToInt(span.green), FixedToInt(span.blue)); \
81 span.blue += span.blueStep; \
109 FixedToInt(span.green), FixedToInt(span.blue), \
115 span.blue += span.blueStep; \
144 FixedToInt(span.green), FixedToInt(span.blue), \
150 span.blue += span.blueStep; \
178 FixedToInt(span.green), FixedToInt(span.blue)); \
183 span.blue += span.blueStep; \
211 ptr->b = FixedToInt(span.blue); \
216 span.blue += span.blueStep;
    [all...]
  /frameworks/native/opengl/tests/testFramerate/src/com/android/testframerate/
TestFramerateView.java 78 float blue = (now_us % 3000000) / 3000000.f; local
79 GLES20.glClearColor(red, green, blue, 1.0f);
  /frameworks/native/services/surfaceflinger/RenderEngine/
RenderEngine.h 64 void clearWithColor(float red, float green, float blue, float alpha);
66 float red, float green, float blue, float alpha);
  /cts/tests/tests/graphics/src/android/graphics/cts/
SweepGradientTest.java 62 final int[] colors = new int[] { Color.GREEN, Color.RED, Color.BLUE };
72 final int[] colors = new int[] { Color.GREEN, Color.RED, Color.BLUE, Color.GREEN };
116 int blue = (int) ((1d - delta) * Color.blue(colors[i1]) + local
117 delta * Color.blue(colors[i2]));
118 color = Color.argb(alpha, red, green, blue);
127 assertEquals(Color.blue(color), Color.blue(pixel), tolerance);
  /external/freetype/src/sfnt/
pngshim.c 74 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;
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
TextureGeneratorVoronoi.java 112 texres.blue = colorBand[colorbandIndex][2];
115 texres.red = texres.green = texres.blue = 0.0f;
122 texres.blue += weight * hashPoint[2];
136 texres.blue *= t1;
140 texres.blue *= sc;
148 data[index++] = (byte) (texres.blue * 255.0f);
  /ndk/tests/build/issue20862-libpng-O0/jni/
pngrtran.c 727 int b = (palette[i].blue >> (8 - PNG_QUANTIZE_BLUE_BITS));
3262 png_byte blue = *(sp++); local
3301 png_byte blue = *(sp++); local
3332 png_uint_16 red, green, blue, w; local
3383 png_uint_16 red, green, blue, gray16; local
4803 png_byte blue = (png_byte)(trans_color->blue & 0xff); local
5044 png_uint_32 blue = (s2 + s1 + 65536) & 0xffff; local
    [all...]
  /device/samsung/manta/liblights/
lights.c 101 int blue = color & 0x000000ff; local
106 if (blue > brightness)
107 brightness = blue;
138 unsigned int blue; local
143 blue = color & 0x000000ff;
148 if (blue < white)
149 white = blue;
  /external/chromium_org/third_party/mesa/src/src/mesa/tnl_dd/
t_dd_vb.c 105 dst->color[2] = src->tv.color.blue;
131 dst->color[2] = src->v.color.blue;
136 dst->attrib[FRAG_ATTRIB_COL1][2] = UBYTE_TO_FLOAT(src->v.specular.blue);
209 v->tv.color.blue,
219 v->v.color.blue,
223 v->v.specular.blue,
233 v->v.color.blue,
245 v->v.color.blue,
259 v->v.color.blue,
  /external/mesa3d/src/mesa/tnl_dd/
t_dd_vb.c 105 dst->color[2] = src->tv.color.blue;
131 dst->color[2] = src->v.color.blue;
136 dst->attrib[FRAG_ATTRIB_COL1][2] = UBYTE_TO_FLOAT(src->v.specular.blue);
209 v->tv.color.blue,
219 v->v.color.blue,
223 v->v.specular.blue,
233 v->v.color.blue,
245 v->v.color.blue,
259 v->v.color.blue,
  /development/samples/devbytes/graphics/ImagePixelization/src/com/example/android/imagepixelization/
ImagePixelization.java 169 int pixel = 0, red = 0, green = 0, blue = 0, numPixels = 0; local
181 numPixels = red = green = blue = 0;
191 blue += Color.blue(pixel);
196 pixel = Color.rgb(red / numPixels, green / numPixels, blue / numPixels);
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
Color.h 90 int blue() const { return blueChannel(m_color); } function in class:WebCore::Color
146 blend(premultFrom.blue(), premultTo.blue(), progress),
154 blend(from.blue(), to.blue(), progress),
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
raytrace.js 82 blue : 0.0,
91 this.blue = b;
99 result.blue = c1.blue + c2.blue;
109 result.blue = c1.blue + s;
121 result.blue = c1.blue - c2.blue;
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v4/
v8-raytrace.js 77 blue : 0.0,
86 this.blue = b;
94 result.blue = c1.blue + c2.blue;
104 result.blue = c1.blue + s;
116 result.blue = c1.blue - c2.blue;
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v5/
v8-raytrace.js 77 blue : 0.0,
86 this.blue = b;
94 result.blue = c1.blue + c2.blue;
104 result.blue = c1.blue + s;
116 result.blue = c1.blue - c2.blue;
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v6/
v8-raytrace.js 77 blue : 0.0,
86 this.blue = b;
94 result.blue = c1.blue + c2.blue;
104 result.blue = c1.blue + s;
116 result.blue = c1.blue - c2.blue;
    [all...]
  /external/chromium_org/v8/benchmarks/
raytrace.js 82 blue : 0.0,
91 this.blue = b;
99 result.blue = c1.blue + c2.blue;
109 result.blue = c1.blue + s;
121 result.blue = c1.blue - c2.blue;
    [all...]
  /external/v8/benchmarks/
raytrace.js 82 blue : 0.0,
91 this.blue = b;
99 result.blue = c1.blue + c2.blue;
109 result.blue = c1.blue + s;
121 result.blue = c1.blue - c2.blue;
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
AnimationSeeking.java 92 private static final int BLUE = 0xff8080FF;
135 int blue = (int)(100 + Math.random() * 155); local
136 int color = 0xff000000 | red << 16 | green << 8 | blue;
138 int darkColor = 0xff000000 | red/4 << 16 | green/4 << 8 | blue/4;
CustomEvaluator.java 150 int blue = (int)(Math.random() * 255); local
151 int color = 0xff000000 | red << 16 | green << 8 | blue;
153 int darkColor = 0xff000000 | red/4 << 16 | green/4 << 8 | blue/4;

Completed in 1906 milliseconds

1 2 34 5 6 7 8 91011>>