HomeSort by relevance Sort by last modified time
    Searched refs:clip_8b (Results 1 - 6 of 6) sorted by null

  /external/webp/src/utils/
quant_levels_dec.c 74 static WEBP_INLINE uint8_t clip_8b(int v) { function
146 dst[x] = clip_8b(c + dither[x % DSIZE]);
148 dst[x] = clip_8b(c);
  /external/webp/src/enc/
picture_csp.c 227 static uint8_t clip_8b(fixed_t v) { function
371 return clip_8b(16 + (luma >> (YUV_FIX + SFIX)));
376 return clip_8b(128 + (u >> (YUV_FIX + SFIX)));
381 return clip_8b(128 + (v >> (YUV_FIX + SFIX)));
    [all...]
  /external/opencv3/3rdparty/libwebp/dsp/
enc.c 22 static WEBP_INLINE uint8_t clip_8b(int v) { function
77 clip1[255 + i] = clip_8b(i);
88 dst[(x) + (y) * BPS] = clip_8b(ref[(x) + (y) * BPS] + ((v) >> 3))
dec.c 54 static WEBP_INLINE uint8_t clip_8b(int v) { function
62 dst[x + y * BPS] = clip_8b(dst[x + y * BPS] + ((v) >> 3))
89 // In the worst case scenario, the input to clip_8b() can be as large as
  /external/webp/src/dsp/
enc.c 20 static WEBP_INLINE uint8_t clip_8b(int v) { function
93 clip1[255 + i] = clip_8b(i);
104 dst[(x) + (y) * BPS] = clip_8b(ref[(x) + (y) * BPS] + ((v) >> 3))
dec.c 19 static WEBP_INLINE uint8_t clip_8b(int v) { function
27 dst[x + y * BPS] = clip_8b(dst[x + y * BPS] + ((v) >> 3))
61 // In the worst case scenario, the input to clip_8b() can be as large as

Completed in 71 milliseconds