Searched refs:clip_8b (Results 1 - 4 of 4) sorted by relevance

/external/webp/src/utils/
H A Dquant_levels_dec_utils.c75 static WEBP_INLINE uint8_t clip_8b(int v) { function
148 dst[x] = clip_8b(c + dither[x % DSIZE]);
150 dst[x] = clip_8b(c);
/external/webp/src/enc/
H A Dpicture_csp_enc.c242 static uint8_t clip_8b(fixed_t v) { function
376 return clip_8b(16 + (luma >> (YUV_FIX + SFIX)));
381 return clip_8b(128 + (u >> (YUV_FIX + SFIX)));
386 return clip_8b(128 + (v >> (YUV_FIX + SFIX)));
/external/webp/src/dsp/
H A Denc.c20 static WEBP_INLINE uint8_t clip_8b(int v) { function
97 clip1[255 + i] = clip_8b(i);
110 dst[(x) + (y) * BPS] = clip_8b(ref[(x) + (y) * BPS] + ((v) >> 3))
H A Ddec.c22 static WEBP_INLINE uint8_t clip_8b(int v) { function
30 dst[(x) + (y) * BPS] = clip_8b(dst[(x) + (y) * BPS] + ((v) >> 3))
65 // In the worst case scenario, the input to clip_8b() can be as large as
706 dst[i] = clip_8b((int)dst[i] + delta1);

Completed in 317 milliseconds