HomeSort by relevance Sort by last modified time
    Searched refs:rgb (Results 26 - 50 of 569) sorted by null

12 3 4 5 6 7 8 91011>>

  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
exposure.rs 29 float3 t = convert_float3(in.rgb);
30 out.rgb = convert_uchar3(clamp(convert_int3(t * bright), 0, 255));
contrast.rs 29 float3 v = convert_float3(in.rgb) * brightM + brightC;
31 o.rgb = convert_uchar3(clamp(v, 0.f, 255.f));
greyscale.rs 25 float3 mono = dot(f4.rgb, gMonoMult);
31 return (uchar)dot(f4.rgb, gMonoMult);
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
exposure.rs 29 float3 t = convert_float3(in.rgb);
30 out.rgb = convert_uchar3(clamp(convert_int3(t * bright), 0, 255));
contrast.rs 29 float3 v = convert_float3(in.rgb) * brightM + brightC;
31 o.rgb = convert_uchar3(clamp(v, 0.f, 255.f));
greyscale.rs 25 float3 mono = dot(f4.rgb, gMonoMult);
31 return (uchar)dot(f4.rgb, gMonoMult);
  /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);
  /external/libcxx/www/
menu.css 29 background-color: rgb(192,192,192);
35 background-color: rgb(235,235,235);
38 color:rgb(100,50,100);
  /external/libcxxabi/www/
menu.css 29 background-color: rgb(192,192,192);
35 background-color: rgb(235,235,235);
38 color:rgb(100,50,100);
  /cts/apps/CameraITS/tests/scene1/
test_post_raw_sensitivity_boost.py 113 pylab.plot(xs, [rgb[0] for rgb in raw_rgb_means], 'r')
114 pylab.plot(xs, [rgb[1] for rgb in raw_rgb_means], 'g')
115 pylab.plot(xs, [rgb[2] for rgb in raw_rgb_means], 'b')
119 pylab.plot(xs, [rgb[0] for rgb in yuv_rgb_means], 'r')
120 pylab.plot(xs, [rgb[1] for rgb in yuv_rgb_means], 'g'
    [all...]
  /external/libdrm/tests/util/
pattern.c 67 #define MAKE_RGBA(rgb, r, g, b, a) \
68 ((((r) >> (8 - (rgb)->red.length)) << (rgb)->red.offset) | \
69 (((g) >> (8 - (rgb)->green.length)) << (rgb)->green.offset) | \
70 (((b) >> (8 - (rgb)->blue.length)) << (rgb)->blue.offset) | \
71 (((a) >> (8 - (rgb)->alpha.length)) << (rgb)->alpha.offset))
73 #define MAKE_RGB24(rgb, r, g, b)
679 const struct util_rgb_info *rgb = &info->rgb; local
705 const struct util_rgb_info *rgb = &info->rgb; local
727 const struct util_rgb_info *rgb = &info->rgb; local
    [all...]
  /external/libjpeg-turbo/
jdcol565.c 38 INT32 rgb; local
54 rgb = PACK_SHORT_565(r, g, b);
55 *(INT16*)outptr = rgb;
67 rgb = PACK_SHORT_565(r, g, b);
76 rgb = PACK_TWO_PIXELS(rgb, PACK_SHORT_565(r, g, b));
78 WRITE_TWO_ALIGNED_PIXELS(outptr, rgb);
89 rgb = PACK_SHORT_565(r, g, b);
90 *(INT16*)outptr = rgb;
118 INT32 rgb; local
195 INT32 rgb; local
252 INT32 rgb; local
307 INT32 rgb; local
349 INT32 rgb; local
    [all...]
  /frameworks/rs/java/tests/RsCameraDemo/src/com/android/example/rscamera/
focus_peak.rs 57 int4 rgb;
58 rgb.r = mergedPixel.r +
60 rgb.g = mergedPixel.r -
63 rgb.b = mergedPixel.r +
65 rgb.a = 255;
68 uchar4 out = convert_uchar4(clamp(rgb, 0, 255));
  /packages/apps/Gallery2/jni/filters/
shadows.c 31 unsigned char * rgb = (unsigned char * )destination; local
45 rgb2hsv(rgb,i,hsv,0);
51 hsv2rgb(hsv,0, rgb,i);
  /frameworks/av/cmds/stagefright/filters/
saturation.rs 29 // get RGB, scale 0-255 uchar to 0-1.0 float
30 float3 rgb = {v_in->y * 0.003921569f, v_in->z * 0.003921569f,
34 float3 result = dot(rgb, gMonoMult);
35 result = mix(result, rgb, gSaturation);
  /frameworks/av/media/libstagefright/filters/
saturationARGB.rs 29 // get RGB, scale 0-255 uchar to 0-1.0 float
30 float3 rgb = {v_in->y * 0.003921569f, v_in->z * 0.003921569f,
34 float3 result = dot(rgb, gMonoMult);
35 result = mix(result, rgb, gSaturation);
  /developers/build/prebuilts/gradle/BasicRenderScript/Application/src/main/rs/
saturation.rs 31 float3 result = dot(f4.rgb, gMonoMult);
32 result = mix( result, f4.rgb, saturationValue );
  /developers/samples/android/renderScript/BasicRenderScript/Application/src/main/rs/
saturation.rs 31 float3 result = dot(f4.rgb, gMonoMult);
32 result = mix( result, f4.rgb, saturationValue );
  /development/samples/browseable/BasicRenderScript/src/rs/
saturation.rs 31 float3 result = dot(f4.rgb, gMonoMult);
32 result = mix( result, f4.rgb, saturationValue );
  /external/chromium-trace/catapult/tracing/tracing/ui/base/
list_view.css 23 background-color: rgb(171, 217, 202);
29 background-color: rgb(103, 199, 165);
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
contrast.rs 29 float3 v = convert_float3(in.rgb) * brightM + brightC;
31 o.rgb = convert_uchar3(clamp(v, 0.f, 255.f));
greyscale.rs 25 float3 mono = dot(f4.rgb, gMonoMult);
31 return (uchar)dot(f4.rgb, gMonoMult);
  /frameworks/rs/java/tests/ScriptGroupTest/src/com/android/rs/sgtest/
levels_f.rsh 26 float3 pixel = convert_float4(in).rgb;
50 pixel.rgb = rsMatrixMultiply(&colorMat, in.rgb);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
ImageFilterBwFilter.java 57 int rgb = Color.HSVToColor(hsv); local
58 int r = 0xFF & (rgb >> 16);
59 int g = 0xFF & (rgb >> 8);
60 int b = 0xFF & (rgb >> 0);

Completed in 504 milliseconds

12 3 4 5 6 7 8 91011>>