Searched refs:red (Results 126 - 150 of 273) sorted by relevance

1234567891011

/external/libpng/contrib/gregbook/
H A Dreadpng2.c433 * takes a pointer to a pointer, and it always returns valid red,
440 mainprog_ptr->bg_red = pBackground->red >> 8;
454 mainprog_ptr->bg_red = (uch)pBackground->red;
/external/libpng/contrib/visupng/
H A DPngFile.c194 pBkgColor->red = (byte) pBackground->red;
/external/libvpx/examples/includes/geshi/geshi/
H A Dabap.php28 * 1) control statements (blue), 2) declarative statements (red-maroon),
30 * + GeSHi : literals (red) + symbols (green) + methods/attributes (mauve)
291 'color red',
/external/mesa3d/src/pixelflinger2/
H A Dpixelflinger2.cpp66 static void BlendColor(GGLInterface * iface, GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) argument
69 ctx->state.blendState.color[0] = MIN2(MAX2(red * 255, 0.0f), 255.0f);
/external/icu4c/
H A Dicu4c.css319 color: red;
325 color: red;
330 color: red;
/external/webkit/Source/WebCore/platform/mac/
H A DDragImageMac.mm200 CGFloat red;
204 [[textColor colorUsingColorSpaceName:NSDeviceRGBColorSpace] getRed:&red green:&green blue:&blue alpha:&alpha];
205 graphicsContext.setFillColor(makeRGBA(red * 255, green * 255, blue * 255, alpha * 255), ColorSpaceDeviceRGB);
/external/webkit/Source/WebKit/mac/Misc/
H A DWebKitNSStringExtras.mm95 CGFloat red;
99 [[textColor colorUsingColorSpaceName:NSDeviceRGBColorSpace] getRed:&red green:&green blue:&blue alpha:&alpha];
100 graphicsContext.setFillColor(makeRGBA(red * 255, green * 255, blue * 255, alpha * 255), ColorSpaceDeviceRGB);
/external/libpng/
H A Dpngrutil.c594 pal_ptr->red = buf[0];
605 palette[i].red = buf[0];
823 png_ptr->sig_bit.red = buf[0];
831 png_ptr->sig_bit.red = buf[0];
1299 pp->red = *entry_start++;
1306 pp->red = png_get_uint_16(entry_start); entry_start += 2;
1320 pp[i].red = *entry_start++;
1327 pp[i].red = png_get_uint_16(entry_start); entry_start += 2;
1397 png_ptr->trans_values.red = png_get_uint_16(buf);
1505 png_ptr->background.red
[all...]
/external/opencv/otherlibs/highgui/
H A Dgrfmt_exr.cpp496 Y = (Y - b * m_chroma.blue[1] - r * m_chroma.red[1]) / m_chroma.green[1];
537 out[i] = in[n] * m_chroma.blue[0] + in[n + 1] * m_chroma.green[0] + in[n + 2] * m_chroma.red[0];
543 o[i] = (uchar) (in[n] * m_chroma.blue[0] + in[n + 1] * m_chroma.green[0] + in[n + 2] * m_chroma.red[0]);
555 ((int *)out)[i] = int(si[n] * m_chroma.blue[0] + si[n + 1] * m_chroma.green[0] + si[n + 2] * m_chroma.red[0]);
561 ((uchar *)out)[i] = uchar((ui[n] * m_chroma.blue[0] + ui[n + 1] * m_chroma.green[0] + ui[n + 2] * m_chroma.red[0]) * (256.0 / 4294967296.0));
/external/opencv/
H A Dcvjni.cpp245 CvScalar red = CV_RGB( 255, 0, 0 ); local
249 red, // �O���֊s��̐F
250 red, // �����֊s��i���j�̐F
/external/webkit/Source/WebCore/platform/graphics/ca/win/
H A DPlatformCAAnimationWin.cpp363 float a[4] = { value.red(), value.green(), value.blue(), value.alpha() };
409 float a[4] = { value.red(), value.green(), value.blue(), value.alpha() };
474 float a[4] = { value[i].red(), value[i].green(), value[i].blue(), value[i].alpha() };
/external/webkit/Source/WebCore/platform/graphics/win/
H A DFontCGWin.cpp196 SetTextColor(hdc, RGB(fillColor.red(), fillColor.green(), fillColor.blue()));
292 buffer[i + 2] = fillColor.red();
369 Color shadowFillColor(shadowColor.red(), shadowColor.green(), shadowColor.blue(), shadowColor.alpha() * fillColor.alpha() / 255);
/external/webkit/Source/WebKit/chromium/public/
H A DWebGraphicsContext3D.h187 virtual void blendColor(WGC3Dclampf red, WGC3Dclampf green, WGC3Dclampf blue, WGC3Dclampf alpha) = 0;
198 virtual void clearColor(WGC3Dclampf red, WGC3Dclampf green, WGC3Dclampf blue, WGC3Dclampf alpha) = 0;
201 virtual void colorMask(WGC3Dboolean red, WGC3Dboolean green, WGC3Dboolean blue, WGC3Dboolean alpha) = 0;
/external/webkit/Source/WebKit/chromium/src/
H A DGraphicsContext3DInternal.h97 void blendColor(GC3Dclampf red, GC3Dclampf green, GC3Dclampf blue, GC3Dclampf alpha);
109 void clearColor(GC3Dclampf red, GC3Dclampf green, GC3Dclampf blue, GC3Dclampf alpha);
112 void colorMask(GC3Dboolean red, GC3Dboolean green, GC3Dboolean blue, GC3Dboolean alpha);
/external/webkit/Source/WebKit/qt/tests/qdeclarativewebview/
H A Dtst_qdeclarativewebview.cpp503 QCOMPARE(wv->property("backgroundColor").value<QColor>(), QColor(Qt::red));
512 reference.fill(Qt::red);
517 wv->setProperty("backgroundColor", Qt::red);
/external/webkit/Source/WebKit/qt/tests/qgraphicswebview/
H A Dtst_qgraphicswebview.cpp356 QBrush brush1(Qt::red);
359 // Rendered image must have red background on an active QGraphicsWebView.
362 // Rendered image must have red foreground on an active QGraphicsWebView.
365 // Rendered image must have red background on an inactive QGraphicsWebView.
368 // Rendered image must have red foreground on an inactive QGraphicsWebView.
546 painter.setBrush(Qt::red);
565 painter.setBrush(Qt::red);
/external/webkit/Source/WebKit/qt/tests/qwebview/
H A Dtst_qwebview.cpp362 QBrush brush1(Qt::red);
365 // Rendered image must have red background on an active QWebView.
368 // Rendered image must have red foreground on an active QWebView.
371 // Rendered image must have red background on an inactive QWebView.
374 // Rendered image must have red foreground on an inactive QWebView.
460 "<body width=1024 height=768 bgcolor=red>"
474 reference.fill(Qt::red);
506 reference3.fill(Qt::red);
/external/qemu/distrib/sdl-1.2.15/src/hermes/
H A Dx86p_16.asm378 and edx,1110000000000000b ; red
401 and edx,1110000000000000b ; red
475 and edx,1110000000000000b ; red
/external/qemu/distrib/sdl-1.2.15/src/video/x11/
H A DSDL_x11video.c1344 rj = all[j].red >> 8;
1358 colors[c->pixel].r = c->red >> 8;
1393 xcmap[i].red = (colors[i].r<<8)|colors[i].r;
1440 col.red = want[i].r << 8;
1447 colors[col.pixel].r = col.red >> 8;
1483 xcmap[i].red = ramp[0*256+c];
/external/webkit/Source/WebCore/platform/graphics/ca/mac/
H A DPlatformCAAnimationMac.mm391 [NSNumber numberWithDouble:value.red()],
442 [NSNumber numberWithDouble:value.red()],
512 [NSNumber numberWithDouble:value[i].red()],
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
H A DUtils.java153 int da = rgb2.red - rgb.red;
/external/guava/guava-tests/test/com/google/common/collect/
H A DAbstractImmutableSetTest.java331 for (Integer red : colorElem) {
334 webSafeColorsBuilder.add((red << 16) + (green << 8) + blue);
/external/llvm/docs/_static/
H A Dllvm.css63 .doc_warning { color: red; font-weight: bold }
/external/mesa3d/docs/
H A DMESA_drm_image.spec91 then red, then green, then blue. The bit values accepted by
H A DMESA_ycbcr_texture.spec127 YCbCr, not RGB. Queries of the texture's red, green and blue component

Completed in 640 milliseconds

1234567891011