HomeSort by relevance Sort by last modified time
    Searched refs:rgb (Results 1 - 25 of 234) sorted by null

1 2 3 4 5 6 7 8 910

  /packages/apps/Gallery2/jni/filters/
exposure.c 23 unsigned char * rgb = (unsigned char * )destination; local
31 rgb[RED] = clamp((255*(rgb[RED]))/m);
32 rgb[GREEN] = clamp((255*(rgb[GREEN]))/m);
33 rgb[BLUE] = clamp((255*(rgb[BLUE]))/m);
contrast.c 43 unsigned char * rgb = (unsigned char * )destination; local
50 rgb[RED] = clamp((int)(m*rgb[RED]+c));
51 rgb[GREEN] = clamp((int)(m*rgb[GREEN]+c));
52 rgb[BLUE] = clamp((int)(m*rgb[BLUE]+c));
redeye.c 24 unsigned char * rgb = (unsigned char * )destination; local
27 filterRedEye(rgb,rgb,width,height,rect);
bwfilter.c 24 unsigned char * rgb = (unsigned char * )destination; local
42 float r = sr *rgb[RED];
43 float g = sg *rgb[GREEN];
44 float b = sb *rgb[BLUE];
50 rgb[RED] = CLAMP(avg);
51 rgb[GREEN] = rgb[RED];
52 rgb[BLUE] = rgb[RED];
hue.c 23 unsigned char * rgb = (unsigned char * )destination; local
30 int r = rgb[RED];
31 int g = rgb[GREEN];
32 int b = rgb[BLUE];
38 rgb[RED] = clamp((int)rf);
39 rgb[GREEN] = clamp((int)gf);
40 rgb[BLUE] = clamp((int)bf);
highlight.c 24 unsigned char * rgb = (unsigned char * )destination; local
32 rgb2hsv(rgb,i,hsv,0);
35 hsv2rgb(hsv,0, rgb,i);
shadows.c 31 unsigned char * rgb = (unsigned char * )destination; local
45 rgb2hsv(rgb,i,hsv,0);
51 hsv2rgb(hsv,0, rgb,i);
  /device/generic/goldfish/camera/
Converters.h 29 * NOTE: RGB and big/little endian considerations. Wherewer in this code RGB
34 * const uint32_t rgb = *reinterpret_cast<const uint32_t*>(framebuffer);
36 * So, if this code runs on the little endian CPU, red color in 'rgb' would be
38 * the code runs on a big endian CPU, the red color in 'rgb' would be masked as
77 * Extracting, and saving color bytes from / to WORD / DWORD RGB.
82 #define R16(rgb) static_cast<uint8_t>(rgb & kRed5)
83 #define G16(rgb) static_cast<uint8_t>((rgb & kGreen6) >> 5
222 RGB32_t rgb; local
    [all...]
Converters.cpp 32 uint16_t* rgb,
43 *rgb = YUVToRGB565(*Y, nU, nV);
44 Y++; rgb++;
45 *rgb = YUVToRGB565(*Y, nU, nV);
46 Y++; rgb++;
62 uint32_t* rgb,
73 *rgb = YUVToRGB32(*Y, nU, nV);
74 Y++; rgb++;
75 *rgb = YUVToRGB32(*Y, nU, nV);
76 Y++; rgb++
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
inspectorSyntaxHighlight.css 30 color: rgb(0, 116, 0);
34 color: rgb(7, 144, 154);
38 color: rgb(50, 0, 255);
42 color: rgb(200, 0, 0);
50 color: rgb(200, 0, 180);
54 color: rgb(0, 116, 0);
58 color: rgb(170, 13, 145);
62 color: rgb(28, 0, 207);
66 color: rgb(196, 26, 22);
75 color: rgb(35, 110, 37)
    [all...]
audits.css 80 color: rgb(110, 116, 128);
113 color: rgb(6, 6, 6);
115 border: 1px solid rgb(165, 165, 165);
116 background-color: rgb(237, 237, 237);
117 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(252, 252, 252)), to(rgb(223, 223, 223)));
130 background-color: rgb(215, 215, 215);
131 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(194, 194, 194)), to(rgb(239, 239, 239)));
135 color: rgb(130, 130, 130)
    [all...]
Color.js 67 get rgb()
82 set rgb(x)
92 this._hsl = this._rgbToHSL(this.rgb);
148 case "rgb":
149 return "rgb(" + this.rgb.join(", ") + ")";
169 _rgbToHex: function(rgb)
171 var r = parseInt(rgb[0]).toString(16);
172 var g = parseInt(rgb[1]).toString(16);
173 var b = parseInt(rgb[2]).toString(16)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
TestColor.java 24 public TestColor(int rgb) {
25 this.mRgb = rgb;
  /external/webkit/Source/WebCore/css/
view-source.css 50 background-color: rgb(240, 240, 240);
51 border-right: 1px solid rgb(187, 187, 187) !important;
66 color: rgb(128, 128, 128);
85 color: rgb(136, 18, 128);
90 color: rgb(153, 69, 0);
95 color: rgb(26, 26, 166);
115 color: rgb(35, 110, 37);
120 color: rgb(192, 192, 192);
124 rgb(136, 18, 128);
140 background-color: rgb(100%, 62%, 42%)
    [all...]
  /external/chromium/chrome/browser/resources/gpu_internals/
info_view.css 33 color: rgb(0, 128, 0);
37 color: rgb(128, 128, 0);
41 color: rgb(255, 0, 0);
  /external/clang/www/
menu.css 29 background-color: rgb(192,192,192);
35 background-color: rgb(235,235,235);
38 color:rgb(100,50,100);
  /external/compiler-rt/www/
menu.css 29 background-color: rgb(192,192,192);
35 background-color: rgb(235,235,235);
38 color:rgb(100,50,100);
  /ndk/sources/cxx-stl/llvm-libc++/www/
menu.css 29 background-color: rgb(192,192,192);
35 background-color: rgb(235,235,235);
38 color:rgb(100,50,100);
  /external/qemu/android/camera/
camera-format-converters.c 33 * NOTE: RGB and big/little endian considerations. Wherewer in this code RGB
38 * const uint32_t rgb = *reinterpret_cast<const uint32_t*>(framebuffer);
40 * So, if this code runs on the little endian CPU, red color in 'rgb' would be
42 * the code runs on a big endian CPU, the red color in 'rgb' would be masked as
75 * Extracting, and saving color bytes from / to WORD / DWORD RGB.
80 #define R16(rgb) (uint8_t)((rgb) & kRed5)
81 #define G16(rgb) (uint8_t)(((rgb) & kGreen6) >> 5
227 RGB32_t rgb; local
    [all...]
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
contrast.rs 35 float3 v = convert_float3(in->rgb) * brightM + brightC;
36 out->rgb = convert_uchar3(clamp(v, 0.f, 255.f));
greyscale.fs 24 float3 mono = dot(f4.rgb, gMonoMult);
30 return (uchar)dot(f4.rgb, gMonoMult);
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
contrast.rs 34 float3 v = convert_float3(in->rgb) * brightM + brightC;
35 out->rgb = convert_uchar3(clamp(v, 0.f, 255.f));
greyscale.fs 24 float3 mono = dot(f4.rgb, gMonoMult);
30 return (uchar)dot(f4.rgb, gMonoMult);
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
contrast.rs 34 float3 v = convert_float3(in->rgb) * brightM + brightC;
35 out->rgb = convert_uchar3(clamp(v, 0.f, 255.f));
greyscale.fs 24 float3 mono = dot(f4.rgb, gMonoMult);
30 return (uchar)dot(f4.rgb, gMonoMult);

Completed in 530 milliseconds

1 2 3 4 5 6 7 8 910