OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:sclip2
(Results
1 - 3
of
3
) sorted by null
/external/opencv3/3rdparty/libwebp/enc/
filter.c
24
static int8_t
sclip2
[112 + 112 + 1]; // clips [-112, 112] to [-16, 15]
variable
40
sclip2
[112 + i] = (i < -16) ? -16 : (i > 15) ? 15 : i;
56
const int a1 =
sclip2
[112 + ((a + 4) >> 3)];
57
const int a2 =
sclip2
[112 + ((a + 3) >> 3)];
66
const int a1 =
sclip2
[112 + ((a + 4) >> 3)];
67
const int a2 =
sclip2
[112 + ((a + 3) >> 3)];
/external/opencv3/3rdparty/libwebp/dsp/
dec.c
27
static int8_t
sclip2
[112 + 112 + 1]; // clips [-112, 112] to [-16, 15]
variable
45
sclip2
[112 + i] = (i < -16) ? -16 : (i > 15) ? 15 : i;
498
const int a1 =
sclip2
[112 + ((a + 4) >> 3)];
499
const int a2 =
sclip2
[112 + ((a + 3) >> 3)];
508
const int a1 =
sclip2
[112 + ((a + 4) >> 3)];
509
const int a2 =
sclip2
[112 + ((a + 3) >> 3)];
/external/webp/src/dsp/
dec_clip_tables.c
239
static const int8_t
sclip2
[112 + 112 + 1] = {
variable
333
static int8_t
sclip2
[112 + 112 + 1];
variable
343
const int8_t* const VP8ksclip2 = &
sclip2
[112];
358
sclip2
[112 + i] = (i < -16) ? -16 : (i > 15) ? 15 : i;
Completed in 82 milliseconds