OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:clip_8b
(Results
1 - 7
of
7
) 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/opencv3/3rdparty/libwebp/dsp/
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
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))
/external/webp/src/dsp/
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
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))
enc_mips32.c
57
// a =
clip_8b
(a) is replaced with: a = max(a, 0); a = min(a, 255)
[
all
...]
/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
...]
Completed in 623 milliseconds