HomeSort by relevance Sort by last modified time
    Searched full:clamp255 (Results 1 - 3 of 3) sorted by null

  /external/libvpx/libvpx/third_party/libyuv/source/
row_common.cc 30 static __inline int32 clamp255(int32 v) { function
36 return (uint32)(clamp255(v));
48 static __inline int32 clamp255(int32 v) {
54 return (uint32)(clamp255(v));
230 uint8 b0 = clamp255(src_argb[0] + dither0) >> 3;
231 uint8 g0 = clamp255(src_argb[1] + dither0) >> 2;
232 uint8 r0 = clamp255(src_argb[2] + dither0) >> 3;
233 uint8 b1 = clamp255(src_argb[4] + dither1) >> 3;
234 uint8 g1 = clamp255(src_argb[5] + dither1) >> 2;
235 uint8 r1 = clamp255(src_argb[6] + dither1) >> 3
    [all...]
  /external/libyuv/files/source/
row_common.cc 30 static __inline int32 clamp255(int32 v) { function
36 return (uint32)(clamp255(v));
48 static __inline int32 clamp255(int32 v) {
54 return (uint32)(clamp255(v));
234 uint8 b0 = clamp255(src_argb[0] + dither0) >> 3;
235 uint8 g0 = clamp255(src_argb[1] + dither0) >> 2;
236 uint8 r0 = clamp255(src_argb[2] + dither0) >> 3;
237 uint8 b1 = clamp255(src_argb[4] + dither1) >> 3;
238 uint8 g1 = clamp255(src_argb[5] + dither1) >> 2;
239 uint8 r1 = clamp255(src_argb[6] + dither1) >> 3
    [all...]
  /external/mesa3d/src/mesa/main/
texcompress_etc.c 525 /* {R(x, y) = clamp255((x × (RH ? RO) + y × (RV ? RO) + 4 × RO + 2) >> 2)
526 * {G(x, y) = clamp255((x × (GH ? GO) + y × (GV ? GO) + 4 × GO + 2) >> 2)
527 * {B(x, y) = clamp255((x × (BH ? BO) + y × (BV ? BO) + 4 × BO + 2) >> 2)
    [all...]

Completed in 3638 milliseconds