Searched refs:rgb (Results 1 - 25 of 125) sorted by relevance

12345

/external/mesa3d/src/gallium/auxiliary/util/
H A Du_format.csv48 # - color space: rgb, yub, sz
62 PIPE_FORMAT_NONE , plain, 1, 1, u8 , , , , x001, rgb
65 PIPE_FORMAT_B8G8R8A8_UNORM , plain, 1, 1, un8 , un8 , un8 , un8 , zyxw, rgb
66 PIPE_FORMAT_B8G8R8X8_UNORM , plain, 1, 1, un8 , un8 , un8 , x8 , zyx1, rgb
67 PIPE_FORMAT_A8R8G8B8_UNORM , plain, 1, 1, un8 , un8 , un8 , un8 , yzwx, rgb
68 PIPE_FORMAT_X8R8G8B8_UNORM , plain, 1, 1, x8 , un8 , un8 , un8 , yzw1, rgb
69 PIPE_FORMAT_A8B8G8R8_UNORM , plain, 1, 1, un8 , un8 , un8 , un8 , wzyx, rgb
70 PIPE_FORMAT_X8B8G8R8_UNORM , plain, 1, 1, x8 , un8 , un8 , un8 , wzy1, rgb
72 PIPE_FORMAT_R8G8B8X8_UNORM , plain, 1, 1, un8 , un8 , un8 , x8 , xyz1, rgb
73 PIPE_FORMAT_B5G5R5X1_UNORM , plain, 1, 1, un5 , un5 , un5 , x1 , zyx1, rgb
[all...]
H A Du_format_rgb9e5.h101 static INLINE unsigned float3_to_rgb9e5(const float rgb[3]) argument
110 rc = rgb9e5_ClampRange(rgb[0]);
111 gc = rgb9e5_ClampRange(rgb[1]);
112 bc = rgb9e5_ClampRange(rgb[2]);
149 static INLINE void rgb9e5_to_float3(unsigned rgb, float retval[3]) argument
155 v.raw = rgb;
H A Du_format_r11g11b10f.h220 static INLINE unsigned float3_to_r11g11b10f(const float rgb[3]) argument
222 return ( f32_to_uf11(rgb[0]) & 0x7ff) |
223 ((f32_to_uf11(rgb[1]) & 0x7ff) << 11) |
224 ((f32_to_uf10(rgb[2]) & 0x3ff) << 22);
227 static INLINE void r11g11b10f_to_float3(unsigned rgb, float retval[3]) argument
229 retval[0] = uf11_to_f32( rgb & 0x7ff);
230 retval[1] = uf11_to_f32((rgb >> 11) & 0x7ff);
231 retval[2] = uf10_to_f32((rgb >> 22) & 0x3ff);
/external/v8/tools/
H A Ddraw_instruction_graph.sh99 set style line 2 lc rgb '#800000'
100 set style line 3 lc rgb '#d00000'
101 set style line 4 lc rgb '#ff6000'
102 set style line 5 lc rgb '#ffc000'
103 set style line 6 lc rgb '#ffff00'
105 set style line 7 lc rgb '#ff00ff'
106 set style line 8 lc rgb '#ffc0ff'
108 set style line 9 lc rgb '#004040'
109 set style line 10 lc rgb '#008080'
110 set style line 11 lc rgb '#4
[all...]
/external/chromium-trace/trace-viewer/tracing/tracing/ui/base/
H A Dline_chart.css12 fill: rgb(192, 192, 192);
H A Dlist_view.css23 background-color: rgb(171, 217, 202);
29 background-color: rgb(103, 199, 165);
/external/clang/www/
H A Dmenu.css29 background-color: rgb(192,192,192);
35 background-color: rgb(235,235,235);
38 color:rgb(100,50,100);
/external/compiler-rt/www/
H A Dmenu.css29 background-color: rgb(192,192,192);
35 background-color: rgb(235,235,235);
38 color:rgb(100,50,100);
/external/libcxx/www/
H A Dmenu.css29 background-color: rgb(192,192,192);
35 background-color: rgb(235,235,235);
38 color:rgb(100,50,100);
/external/libcxxabi/www/
H A Dmenu.css29 background-color: rgb(192,192,192);
35 background-color: rgb(235,235,235);
38 color:rgb(100,50,100);
/external/libdrm/tests/modetest/
H A Dbuffers.c97 const struct rgb_info rgb; member in struct:format_info
102 .rgb = { { (rl), (ro) }, { (bl), (bo) }, { (gl), (go) }, { (al), (ao) } }
198 #define MAKE_RGBA(rgb, r, g, b, a) \
199 ((((r) >> (8 - (rgb)->red.length)) << (rgb)->red.offset) | \
200 (((g) >> (8 - (rgb)->green.length)) << (rgb)->green.offset) | \
201 (((b) >> (8 - (rgb)->blue.length)) << (rgb)->blue.offset) | \
202 (((a) >> (8 - (rgb)
413 fill_smpte_rgb16(const struct rgb_info *rgb, unsigned char *mem, unsigned int width, unsigned int height, unsigned int stride) argument
474 fill_smpte_rgb24(const struct rgb_info *rgb, void *mem, unsigned int width, unsigned int height, unsigned int stride) argument
537 fill_smpte_rgb32(const struct rgb_info *rgb, unsigned char *mem, unsigned int width, unsigned int height, unsigned int stride) argument
814 const struct rgb_info *rgb = &info->rgb; local
840 const struct rgb_info *rgb = &info->rgb; local
862 const struct rgb_info *rgb = &info->rgb; local
[all...]
/external/pdfium/fpdfsdk/include/
H A Dfsdk_define.h63 #define FX_COLORREFTOARGB(rgb) ((FX_DWORD)0xFF000000|(((FX_DWORD)rgb & 0x000000FF) << 16)|((FX_DWORD)rgb & 0x0000FF00)|(((FX_DWORD)rgb & 0x00FF0000) >> 16))
/external/skia/src/images/
H A DSkImageDecoder_libwebp.cpp451 static void ARGB_8888_To_RGB(const uint8_t* in, uint8_t* rgb, int width, argument
456 rgb[0] = SkGetPackedR32(c);
457 rgb[1] = SkGetPackedG32(c);
458 rgb[2] = SkGetPackedB32(c);
459 rgb += 3;
463 static void ARGB_8888_To_RGBA(const uint8_t* in, uint8_t* rgb, int width, argument
480 rgb[0] = r;
481 rgb[1] = g;
482 rgb[2] = b;
483 rgb[
488 RGB_565_To_RGB(const uint8_t* in, uint8_t* rgb, int width, const SkPMColor*) argument
500 ARGB_4444_To_RGB(const uint8_t* in, uint8_t* rgb, int width, const SkPMColor*) argument
512 ARGB_4444_To_RGBA(const uint8_t* in, uint8_t* rgb, int width, const SkPMColor*) argument
537 Index8_To_RGB(const uint8_t* in, uint8_t* rgb, int width, const SkPMColor* SK_RESTRICT ctable) argument
627 uint8_t* rgb = new uint8_t[rgbStride * pic.height]; local
[all...]
/external/webp/src/dsp/
H A Dyuv.h107 uint8_t* const rgb) {
108 rgb[0] = VP8YUVToR(y, v);
109 rgb[1] = VP8YUVToG(y, u, v);
110 rgb[2] = VP8YUVToB(y, u);
121 uint8_t* const rgb) {
128 rgb[0] = gb;
129 rgb[1] = rg;
131 rgb[0] = rg;
132 rgb[1] = gb;
163 uint8_t* const rgb) {
106 VP8YuvToRgb(int y, int u, int v, uint8_t* const rgb) argument
120 VP8YuvToRgb565(int y, int u, int v, uint8_t* const rgb) argument
162 VP8YuvToRgb(int y, int u, int v, uint8_t* const rgb) argument
182 VP8YuvToRgb565(int y, int u, int v, uint8_t* const rgb) argument
[all...]
/external/jpeg/
H A Djdcolor.c242 INT32 rgb; local
257 rgb = PACK_SHORT_565(r,g,b);
258 *(INT16*)outptr = rgb;
269 rgb = PACK_SHORT_565(r,g,b);
277 rgb = PACK_TWO_PIXELS(rgb, PACK_SHORT_565(r,g,b));
278 WRITE_TWO_ALIGNED_PIXELS(outptr, rgb);
288 rgb = PACK_SHORT_565(r,g,b);
289 *(INT16*)outptr = rgb;
315 INT32 rgb; local
410 INT32 rgb; local
463 INT32 rgb; local
610 INT32 rgb; local
649 INT32 rgb; local
[all...]
H A Djdmerge.c326 INT32 rgb; local
346 rgb = PACK_SHORT_565(r,g,b);
351 rgb = PACK_TWO_PIXELS(rgb, PACK_SHORT_565(r,g,b));
352 WRITE_TWO_PIXELS(outptr, rgb);
366 rgb = PACK_SHORT_565(r,g,b);
367 *(INT16*)outptr = rgb;
392 INT32 rgb; local
413 rgb = PACK_SHORT_565(r,g,b);
419 rgb
540 INT32 rgb; local
628 INT32 rgb; local
[all...]
/external/libpng/contrib/libtests/
H A Dgentests.sh96 for ct in gray-alpha rgb rgb-alpha
/external/libvncserver/libvncclient/
H A Dcursor.c50 rfbXCursorColors rgb; local
82 if (!ReadFromRFBServer(client, (char *)&rgb, sz_rfbXCursorColors)) {
88 colors[0] = RGB24_TO_PIXEL(32, rgb.backRed, rgb.backGreen, rgb.backBlue);
89 colors[1] = RGB24_TO_PIXEL(32, rgb.foreRed, rgb.foreGreen, rgb.foreBlue);
/external/androidplot/Examples/DemoApp/src/com/androidplot/demos/widget/
H A DDemoAppWidgetProvider.java60 Color.rgb(0, 200, 0), // line color
61 Color.rgb(0, 100, 0), // point color
70 Color.rgb(0, 0, 200), Color.rgb(0, 0, 100), null, null));
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowColor.java11 public static int rgb(int red, int green, int blue) { method in class:ShadowColor
/external/opencv/otherlibs/highgui/
H A Dutils.cpp83 void icvCvt_BGR2Gray_8u_C3C1R( const uchar* rgb, int rgb_step, argument
91 for( i = 0; i < size.width; i++, rgb += 3 )
93 int t = descale( rgb[swap_rb]*cB + rgb[1]*cG + rgb[swap_rb^2]*cR, SCALE );
97 rgb += rgb_step - size.width*3;
102 void icvCvt_BGR2Gray_16u_C3C1R( const ushort* rgb, int rgb_step, argument
110 for( i = 0; i < size.width; i++, rgb += 3 )
112 int t = descale( rgb[swap_rb]*cB + rgb[
194 icvCvt_BGR2RGB_8u_C3R( const uchar* bgr, int bgr_step, uchar* rgb, int rgb_step, CvSize size ) argument
211 icvCvt_BGR2RGB_16u_C3R( const ushort* bgr, int bgr_step, ushort* rgb, int rgb_step, CvSize size ) argument
[all...]
/external/replicaisland/tools/
H A DExtractPoints.js197 black.rgb.red = 0;
198 black.rgb.blue = 0;
199 black.rgb.green = 0;
202 redColor.rgb.red = 255;
203 redColor.rgb.blue = 0;
204 redColor.rgb.green = 0;
207 greenColor.rgb.red = 0;
208 greenColor.rgb.blue = 0;
209 greenColor.rgb.green = 255;
212 blueColor.rgb
[all...]
/external/androidplot/Examples/DemoApp/src/com/androidplot/demos/
H A DStepChartExampleActivity.java70 Color.rgb(0, 100, 0), // line color
71 Color.rgb(0, 100, 0), // point color
72 Color.rgb(100, 200, 0), null); // fill color
80 StepFormatter stepFormatter = new StepFormatter(Color.rgb(0, 0,0), Color.BLUE);
H A DTimeSeriesActivity.java70 Color.rgb(0, 100, 0), // line color
71 Color.rgb(0, 100, 0), // point color
72 Color.rgb(100, 200, 0), null); // fill color
85 new LineAndPointFormatter(Color.rgb(0, 0,0), Color.BLUE, Color.RED, null);
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DColorTest.java17 int color = Color.rgb(160, 160, 160);

Completed in 2092 milliseconds

12345