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

1 2 34 5 6 7 8 91011>>

  /external/libvncserver/libvncserver/
scale.c 191 unsigned long pixel_value, red, green, blue; local
202 red = green = blue = 0;
227 blue += ((pixel_value >> blueShift) & blueMax);
234 blue /= area2;
236 pixel_value = ((red & redMax) << redShift) | ((green & greenMax) << greenShift) | ((blue & blueMax) << blueShift);
  /external/mesa3d/src/gallium/state_trackers/wgl/
stw_pixelformat.c 48 unsigned char blue; member in struct:stw_pf_color_info::__anon27599
54 unsigned char blue; member in struct:stw_pf_color_info::__anon27600
138 assert(util_format_get_component_bits(color->format, UTIL_FORMAT_COLORSPACE_RGB, 2) == color->bits.blue);
165 pfi->pfd.cColorBits = color->bits.red + color->bits.green + color->bits.blue + color->bits.alpha;
170 pfi->pfd.cBlueBits = color->bits.blue;
171 pfi->pfd.cBlueShift = color->shift.blue;
  /external/mesa3d/src/mesa/swrast/
s_span.h 147 GLfixed blue, blueStep; member in struct:sw_span
s_texcombine.c 159 GLfloat blue = textureUnit->EnvColor[2]; local
162 ASSIGN_4V(c[i], red, green, blue, alpha);
  /external/pdfium/xfa/fde/css/
cfde_cssdeclaration.cpp 82 uint8_t blue = Hex2Dec((uint8_t)pszValue[3], (uint8_t)pszValue[3]); local
83 *dwColor = ArgbEncode(255, red, green, blue);
89 uint8_t blue = Hex2Dec((uint8_t)pszValue[5], (uint8_t)pszValue[6]); local
90 *dwColor = ArgbEncode(255, red, green, blue);
  /external/skia/src/codec/
SkBmpRLECodec.cpp 95 uint8_t blue = get_byte(cBuffer.get(), i*fBytesPerColor); local
98 colorTable[i] = packARGB(0xFF, red, green, blue);
211 uint8_t blue) {
221 dstRow[dstX] = SkPackARGB_as_RGBA(0xFF, red, green, blue);
226 dstRow[dstX] = SkPackARGB_as_BGRA(0xFF, red, green, blue);
231 dstRow[dstX] = SkPack888ToRGB16(red, green, blue);
469 uint8_t blue = fStreamBuffer[fCurrRLEByte++];
473 x++, y, red, green, blue);
506 uint8_t blue = task;
510 setRGBPixel(dst, dstRowBytes, dstInfo, x++, y, red, green, blue);
    [all...]
SkBmpStandardCodec.cpp 108 uint8_t blue = get_byte(cBuffer.get(), i*fBytesPerColor); local
117 colorTable[i] = packARGB(alpha, red, green, blue);
  /external/skia/tests/
ColorSpaceTest.cpp 23 const float red[], const float green[], const float blue[],
37 const float* ref[3] = { red, green, blue };
48 const float red[], const float green[], const float blue[],
63 test_space(r, colorSpace, red, green, blue, expectedGamma);
91 const float blue[] = { 0.436035f, 0.222488f, 0.013916f }; local
92 test_path(r, "icc-v2-gbr.jpg", red, green, blue, k2Dot2Curve_SkGammaNamed);
95 red, green, blue, kNonStandard_SkGammaNamed);
97 red, green, blue, kNonStandard_SkGammaNamed);
99 red, green, blue, kNonStandard_SkGammaNamed);
101 red, green, blue, kNonStandard_SkGammaNamed)
    [all...]
  /external/slf4j/slf4j-jdk14/src/test/java/org/slf4j/
InvocationTest.java 128 Marker blue = MarkerFactory.getMarker("BLUE"); local
129 logger.debug(blue, "hello");
130 logger.info(blue, "hello");
131 logger.warn(blue, "hello");
132 logger.error(blue, "hello");
134 logger.debug(blue, "hello {}", "world");
135 logger.info(blue, "hello {}", "world");
136 logger.warn(blue, "hello {}", "world");
137 logger.error(blue, "hello {}", "world")
    [all...]
  /external/slf4j/slf4j-log4j12/src/test/java/org/slf4j/
InvocationTest.java 123 Marker blue = MarkerFactory.getMarker("BLUE"); local
124 logger.trace(blue, "hello");
125 logger.debug(blue, "hello");
126 logger.info(blue, "hello");
127 logger.warn(blue, "hello");
128 logger.error(blue, "hello");
130 logger.debug(blue, "hello {}", "world");
131 logger.info(blue, "hello {}", "world");
132 logger.warn(blue, "hello {}", "world")
    [all...]
  /external/swiftshader/third_party/PowerVR_SDK/Tools/
PVRTDecompress.cpp 37 PVRTuint8 red,green,blue,alpha; member in struct:Pixel32
42 PVRTint32 red,green,blue,alpha; member in struct:Pixel128S
71 colour.blue = (PVRTuint8)(u32ColourData & 0x1e) | ((u32ColourData & 0x1e) >> 4); // 4->5 bits
79 colour.blue = (PVRTuint8)((u32ColourData & 0xe) << 1) | ((u32ColourData & 0xe) >> 2); // 3->5 bits
101 colour.blue = (PVRTuint8)((u32ColourData & 0x1f0000) >> 16); // 5->5 bits
109 colour.blue = (PVRTuint8)(((u32ColourData & 0xf0000) >> 15) | ((u32ColourData & 0xf0000) >> 19)); // 4->5 bits
132 Pixel128S hP = {(PVRTint32)P.red,(PVRTint32)P.green,(PVRTint32)P.blue,(PVRTint32)P.alpha};
133 Pixel128S hQ = {(PVRTint32)Q.red,(PVRTint32)Q.green,(PVRTint32)Q.blue,(PVRTint32)Q.alpha};
134 Pixel128S hR = {(PVRTint32)R.red,(PVRTint32)R.green,(PVRTint32)R.blue,(PVRTint32)R.alpha};
135 Pixel128S hS = {(PVRTint32)S.red,(PVRTint32)S.green,(PVRTint32)S.blue,(PVRTint32)S.alpha}
    [all...]
  /external/webp/src/enc/
picture_tools_enc.c 154 const int blue = (background_rgb >> 0) & 0xff; local
159 const int Y0 = VP8RGBToY(red, green, blue, YUV_HALF);
161 const int U0 = VP8RGBToU(4 * red, 4 * green, 4 * blue, 4 * YUV_HALF);
162 const int V0 = VP8RGBToV(4 * red, 4 * green, 4 * blue, 4 * YUV_HALF);
200 const uint32_t background = MakeARGB32(red, green, blue);
211 b = BLEND(blue, b, alpha);
  /frameworks/base/media/mca/filterfw/native/core/
shader_program.h 350 void SetClearColor(float red, float green, float blue, float alpha);
429 float blue; member in struct:android::filterfw::ShaderProgram::RGBAColor
432 RGBAColor() : red(0), green(0), blue(0), alpha(1) {
  /frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/engine/
Material.java 41 public static final int BLUE = 2;
92 mColor[p + BLUE] = v;
104 int[] blue = new int[means.length - 1]; local
114 blue[i] = (rgb >> 0) & 0xff;
131 mMaterialProp[i].mBlue = blue[i];
245 int blue = m[0].mBlue; local
251 mColor[p + BLUE] = (byte) blue;
268 int blue = (int) (m[k].mBlue * t1 + m[k + 1].mBlue * t2); local
277 mColor[p + BLUE] = (byte) blue;
289 int blue = mp.mBlue; local
    [all...]
  /hardware/qcom/display/msm8084/liblight/
lights.c 50 = "/sys/class/leds/blue/brightness";
65 = "/sys/class/leds/blue/blink";
132 int red, green, blue; local
162 blue = colorRGB & 0xFF;
175 if (blue)
180 write_int(BLUE_LED_FILE, blue);
  /hardware/qcom/display/msm8226/liblight/
lights.c 50 = "/sys/class/leds/blue/brightness";
65 = "/sys/class/leds/blue/blink";
132 int red, green, blue; local
162 blue = colorRGB & 0xFF;
179 if (blue) {
186 write_int(BLUE_LED_FILE, blue);
  /hardware/qcom/display/msm8909/liblight/
lights.c 51 = "/sys/class/leds/blue/brightness";
69 = "/sys/class/leds/blue/blink";
136 int red, green, blue; local
166 blue = colorRGB & 0xFF;
192 if (blue) {
199 write_int(BLUE_LED_FILE, blue);
  /hardware/qcom/display/msm8994/liblight/
lights.c 51 = "/sys/class/leds/blue/brightness";
66 = "/sys/class/leds/blue/blink";
133 int red, green, blue; local
163 blue = colorRGB & 0xFF;
180 if (blue) {
187 write_int(BLUE_LED_FILE, blue);
  /hardware/qcom/display/msm8996/liblight/
lights.c 51 = "/sys/class/leds/blue/brightness";
66 = "/sys/class/leds/blue/blink";
133 int red, green, blue; local
163 blue = colorRGB & 0xFF;
189 if (blue) {
196 write_int(BLUE_LED_FILE, blue);
  /hardware/qcom/display/msm8998/liblight/
lights.c 57 = "/sys/class/leds/blue/brightness";
72 = "/sys/class/leds/blue/blink";
163 int red, green, blue; local
193 blue = colorRGB & 0xFF;
219 if (blue) {
226 write_int(BLUE_LED_FILE, blue);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
wcsplugin.h 30 JabColorF blue; member in struct:_PrimaryJabColors
63 JabColorF blue; member in struct:_PrimaryJabColors
80 XYZColorF blue; member in struct:_PrimaryXYZColors
  /system/extras/tests/framebuffer/
fb_test.c 197 uint16_t blue = 0x001f; variable
230 loc[i + j*(stride)] = blue;
  /test/vts/hals/light/bullhead/
lights.c 43 char const *const BLUE_LED_FILE = "/sys/class/leds/blue/brightness";
46 char const *const BLUE_TIMEOUT_FILE = "/sys/class/leds/blue/on_off_ms";
136 int red, green, blue; local
162 blue = colorRGB & 0xFF;
168 blue = 0;
175 write_int(BLUE_LED_FILE, blue);
  /cts/tests/tests/graphics/src/android/graphics/cts/
Color_ColorLongTest.java 27 import static android.graphics.Color.blue;
66 assertEquals(1.0f, blue(pack(0.5f, 0.7f, 1.0f)), 0.01f);
67 assertEquals(1.0f, blue(pack(0.5f, 0.7f, 1.0f, 1.0f, p3)), 0.01f);
129 assertEquals(1.0f, color1.blue(), 0.01f);
136 assertEquals(1.0f, color2.blue(), 0.01f);
143 assertEquals(1.0f, color3.blue(), 0.01f);
150 assertEquals(1.0f, color4.blue(), 0.01f);
158 assertEquals(1.0f, color5.blue(), 0.01f);
166 assertEquals(1.0f, color6.blue(), 0.01f);
173 assertEquals(1.0f, color7.blue(), 0.01f)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
AnimationCloning.java 115 int blue = (int)(100 + Math.random() * 155); local
116 int color = 0xff000000 | red << 16 | green << 8 | blue;
118 int darkColor = 0xff000000 | red/4 << 16 | green/4 << 8 | blue/4;

Completed in 4416 milliseconds

1 2 34 5 6 7 8 91011>>