Searched refs:rgb (Results 151 - 175 of 395) sorted by relevance

1234567891011>>

/external/chromium_org/ui/webui/resources/css/
H A Dtabs.css12 background: -webkit-linear-gradient(white, rgb(243, 243, 243));
13 border-bottom: 1px solid rgb(160, 160, 160);
78 border-color: rgb(160, 160, 160);
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_program_pair.c39 unsigned int rgb, unsigned int alpha,
48 if ((!rgb && !alpha) || file == RC_FILE_NONE)
53 if (rgb && pair->RGB.Src[RC_PAIR_PRESUB_SRC].Used
66 if (rgb) {
94 } else if (candidate < 0 || (rgb && rgb_used > 2)
101 if (rgb) {
38 rc_pair_alloc_source(struct rc_pair_instruction *pair, unsigned int rgb, unsigned int alpha, rc_register_file file, unsigned int index) argument
H A Dradeon_pair_schedule.c497 * dst_full is an rgb instruction, meaning that it has a vector instruction(rgb)
575 /*If this arg does not read from an rgb source,
597 /* This function assumes that rgb.Alpha and alpha.RGB are unused */
599 struct rc_pair_instruction * rgb,
604 assert(rgb->Alpha.Opcode == RC_OPCODE_NOP);
611 /* Merge the rgb presubtract registers. */
613 if (!merge_presub_sources(rgb, alpha->RGB, RC_SOURCE_RGB)) {
619 if(!merge_presub_sources(rgb, alpha->Alpha, RC_SOURCE_ALPHA)){
624 /* Copy alpha args into rgb */
598 destructive_merge_instructions( struct rc_pair_instruction * rgb, struct rc_pair_instruction * alpha) argument
685 merge_instructions(struct rc_pair_instruction * rgb, struct rc_pair_instruction * alpha) argument
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/
H A Dimage_burner.css19 color: rgb(0, 102, 204);
40 background-color: rgb(242, 247, 250);
41 border-bottom: 1px solid rgb(218, 236, 248);
115 background-image: -webkit-linear-gradient(rgb(255, 255, 255),
116 rgb(239, 245, 255));
H A Dproxy_settings.css42 box-shadow: 0 0 23px rgb(77, 144, 254) !important;
/external/chromium_org/chrome/browser/resources/
H A Dpolicy_android.css46 border: 1px solid rgb(217, 217, 217);
106 color: rgb(100, 100, 100);
111 color: rgb(180, 180, 180);
141 border: 1px solid rgb(217, 217, 217);
146 background-color: rgb(240, 240, 240);
H A Dcomponents.css71 background: rgb(235, 239, 249);
72 border-top: 1px solid rgb(181, 199, 222);
157 background: rgb(244, 246, 252);
158 border-bottom: 1px solid rgb(237, 239, 245);
/external/chromium_org/chrome/browser/resources/security_warnings/
H A Dinterstitial_v2.css16 background-color: rgb(206, 52, 38);
21 background: rgb(76, 142, 250);
40 background: rgb(50, 102, 213);
141 background-color: rgb(206, 52, 38);
146 background-color: rgb(206, 52, 38);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DtimelinePanel.css33 border-bottom: 1px solid rgb(140, 140, 140);
41 background-color: rgb(236, 236, 236);
47 color: rgb(92, 110, 129); text-shadow: rgba(255, 255, 255, 0.75) 0 1px 0;
55 background-color: rgb(255, 255, 255);
116 background-color: rgb(56, 121, 217) !important;
127 border-left: 1px solid rgb(163, 163, 163);
137 border-top: 1px solid rgb(163, 163, 163);
138 border-bottom: 1px solid rgb(163, 163, 163);
149 background-color: rgb(110, 110, 110);
393 color: rgb(5
[all...]
H A DelementsPanel.css78 outline: 1px solid rgb(66%, 66%, 66%) !important;
111 border: 1px rgb(66%, 66%, 66%) dotted;
197 border-bottom: 1px solid rgb(191, 191, 191);
218 background-color: rgb(240, 240, 240);
264 color: rgb(128, 128, 128);
269 color: rgb(85, 85, 85);
472 border-bottom: 1px solid rgb(189, 189, 189);
590 border-bottom: 1px solid rgb(64%, 64%, 64%);
619 border-top: 1px solid rgb(191, 191, 191);
754 background-color: rgb(5
[all...]
H A Dfilter.css110 background-color: rgb(255, 200, 200);
146 background-color: rgb(66, 129, 235);
150 background-color: rgb(216, 0, 0);
H A DtabbedPane.css57 border-bottom: 1px solid rgb(163, 163, 163);
89 border: 1px solid rgb(163, 163, 163);
136 color: rgb(30, 30, 30);
/external/chromium_org/ui/gfx/codec/
H A Djpeg_codec.cc149 // pixels the the given rgb destination buffer (which should have enough space
151 void StripAlpha(const unsigned char* rgba, int pixel_width, unsigned char* rgb) argument
154 memcpy(&rgb[x * 3], &rgba[x * 4], 3);
159 // pixels the the given rgb destination buffer (which should have enough space
161 void BGRAtoRGB(const unsigned char* bgra, int pixel_width, unsigned char* rgb) argument
165 unsigned char* pixel_out = &rgb[x * 3];
296 void (*converter)(const unsigned char* in, int w, unsigned char* rgb);
401 // Converts one row of rgb data to rgba data by adding a fully-opaque alpha
403 void AddAlpha(const unsigned char* rgb, int pixel_width, unsigned char* rgba) { argument
405 memcpy(&rgba[x * 4], &rgb[
412 RGBtoBGRA(const unsigned char* bgra, int pixel_width, unsigned char* rgb) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/
H A Ds_zoom.c127 * Helper function called from _swrast_write_zoomed_rgba/rgb/
244 const GLubyte (*rgb)[3] = (const GLubyte (*)[3]) src;
250 zoomed.array->rgba8[i][0] = rgb[j][0];
251 zoomed.array->rgba8[i][1] = rgb[j][1];
252 zoomed.array->rgba8[i][2] = rgb[j][2];
257 const GLushort (*rgb)[3] = (const GLushort (*)[3]) src;
263 zoomed.array->rgba16[i][0] = rgb[j][0];
264 zoomed.array->rgba16[i][1] = rgb[j][1];
265 zoomed.array->rgba16[i][2] = rgb[j][2];
270 const GLfloat (*rgb)[
340 _swrast_write_zoomed_rgb_span(struct gl_context *ctx, GLint imgX, GLint imgY, const SWspan *span, const GLvoid *rgb) argument
[all...]
/external/mesa3d/src/mesa/swrast/
H A Ds_zoom.c127 * Helper function called from _swrast_write_zoomed_rgba/rgb/
244 const GLubyte (*rgb)[3] = (const GLubyte (*)[3]) src;
250 zoomed.array->rgba8[i][0] = rgb[j][0];
251 zoomed.array->rgba8[i][1] = rgb[j][1];
252 zoomed.array->rgba8[i][2] = rgb[j][2];
257 const GLushort (*rgb)[3] = (const GLushort (*)[3]) src;
263 zoomed.array->rgba16[i][0] = rgb[j][0];
264 zoomed.array->rgba16[i][1] = rgb[j][1];
265 zoomed.array->rgba16[i][2] = rgb[j][2];
270 const GLfloat (*rgb)[
340 _swrast_write_zoomed_rgb_span(struct gl_context *ctx, GLint imgX, GLint imgY, const SWspan *span, const GLvoid *rgb) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dradeon_pair_schedule.c497 * dst_full is an rgb instruction, meaning that it has a vector instruction(rgb)
575 /*If this arg does not read from an rgb source,
597 /* This function assumes that rgb.Alpha and alpha.RGB are unused */
599 struct rc_pair_instruction * rgb,
604 assert(rgb->Alpha.Opcode == RC_OPCODE_NOP);
611 /* Merge the rgb presubtract registers. */
613 if (!merge_presub_sources(rgb, alpha->RGB, RC_SOURCE_RGB)) {
619 if(!merge_presub_sources(rgb, alpha->Alpha, RC_SOURCE_ALPHA)){
624 /* Copy alpha args into rgb */
598 destructive_merge_instructions( struct rc_pair_instruction * rgb, struct rc_pair_instruction * alpha) argument
685 merge_instructions(struct rc_pair_instruction * rgb, struct rc_pair_instruction * alpha) argument
[all...]
/external/libpng/contrib/gregbook/
H A Drpng2-x.c206 } rgb[] = { variable in typeref:struct:rgb_color
226 static int num_rgb = sizeof(rgb) / sizeof(struct rgb_color);
1090 uch r1_min = rgb[bg[pat].rgb1_min].r;
1091 uch g1_min = rgb[bg[pat].rgb1_min].g;
1092 uch b1_min = rgb[bg[pat].rgb1_min].b;
1093 uch r2_min = rgb[bg[pat].rgb2_min].r;
1094 uch g2_min = rgb[bg[pat].rgb2_min].g;
1095 uch b2_min = rgb[bg[pat].rgb2_min].b;
1096 int r1_diff = rgb[bg[pat].rgb1_max].r - r1_min;
1097 int g1_diff = rgb[b
[all...]
H A Drpng2-win.c197 } rgb[] = { variable in typeref:struct:rgb_color
216 static int num_rgb = sizeof(rgb) / sizeof(struct rgb_color);
863 uch r1_min = rgb[bg[pat].rgb1_min].r;
864 uch g1_min = rgb[bg[pat].rgb1_min].g;
865 uch b1_min = rgb[bg[pat].rgb1_min].b;
866 uch r2_min = rgb[bg[pat].rgb2_min].r;
867 uch g2_min = rgb[bg[pat].rgb2_min].g;
868 uch b2_min = rgb[bg[pat].rgb2_min].b;
869 int r1_diff = rgb[bg[pat].rgb1_max].r - r1_min;
870 int g1_diff = rgb[b
[all...]
/external/chromium_org/third_party/libwebp/enc/
H A Dpicture_csp.c334 const uint8_t* const rgb, int rgb_stride,
337 const uint8_t* const r_ptr = rgb + (swap_rb ? 2 : 0);
338 const uint8_t* const g_ptr = rgb + 1;
339 const uint8_t* const b_ptr = rgb + (swap_rb ? 0 : 2);
340 const uint8_t* const a_ptr = import_alpha ? rgb + 3 : NULL;
366 const uint8_t* rgb, int rgb_stride) {
367 return (picture != NULL) ? Import(picture, rgb, rgb_stride, 3, 0, 0) : 0;
371 const uint8_t* rgb, int rgb_stride) {
372 return (picture != NULL) ? Import(picture, rgb, rgb_stride, 3, 1, 0) : 0;
333 Import(WebPPicture* const picture, const uint8_t* const rgb, int rgb_stride, int step, int swap_rb, int import_alpha) argument
365 WebPPictureImportRGB(WebPPicture* picture, const uint8_t* rgb, int rgb_stride) argument
370 WebPPictureImportBGR(WebPPicture* picture, const uint8_t* rgb, int rgb_stride) argument
/external/webp/src/enc/
H A Dpicture_csp.c334 const uint8_t* const rgb, int rgb_stride,
337 const uint8_t* const r_ptr = rgb + (swap_rb ? 2 : 0);
338 const uint8_t* const g_ptr = rgb + 1;
339 const uint8_t* const b_ptr = rgb + (swap_rb ? 0 : 2);
340 const uint8_t* const a_ptr = import_alpha ? rgb + 3 : NULL;
366 const uint8_t* rgb, int rgb_stride) {
367 return (picture != NULL) ? Import(picture, rgb, rgb_stride, 3, 0, 0) : 0;
371 const uint8_t* rgb, int rgb_stride) {
372 return (picture != NULL) ? Import(picture, rgb, rgb_stride, 3, 1, 0) : 0;
333 Import(WebPPicture* const picture, const uint8_t* const rgb, int rgb_stride, int step, int swap_rb, int import_alpha) argument
365 WebPPictureImportRGB(WebPPicture* picture, const uint8_t* rgb, int rgb_stride) argument
370 WebPPictureImportBGR(WebPPicture* picture, const uint8_t* rgb, int rgb_stride) argument
/external/chromium_org/chrome/browser/resources/inspect/
H A Dinspect.css8 color: rgb(48, 57, 66);
39 color: rgb(92, 97, 102);
55 -webkit-border-start-color: rgb(78, 87, 100);
112 background-color: rgb(64, 192, 64);
120 background-color: rgb(224, 32, 32);
125 background-color: rgb(0, 255, 0);
203 color: rgb(151, 156, 160);
215 color: rgb(17, 85, 204);
247 border-color: rgb(77, 144, 254);
367 background-color: rgb(25
[all...]
/external/chromium_org/chrome/browser/resources/print_preview/search/
H A Ddestination_search.css69 background-color: rgb(249, 237, 190);
70 border-top: solid 1px rgb(245, 233, 183);
105 background-color: rgb(249, 237, 190);
/external/chromium_org/chrome/browser/resources/user_manager/
H A Duser_manager_tutorial.css152 background-color: rgb(241, 202, 58);
158 background-color: rgb(90, 196, 144);
163 background-color: rgb(179, 229, 252);
/external/chromium_org/chrome/browser/resources/chromeos/login/
H A Dscreen_error_message.css55 border-bottom: 1px solid rgb(238,238,238);
71 background-color: rgb(249,249,249);
76 background-color: rgb(249,249,249);
90 color: rgb(17,85,204);
/external/chromium_org/chrome/browser/resources/ntp4/
H A Dincognito_and_guest_tab.css24 color: rgb(39, 110, 242);

Completed in 624 milliseconds

1234567891011>>