Searched refs:abs0 (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/libwebp/enc/
H A Dfilter.c21 static uint8_t abs0[255 + 255 + 1]; // abs(i) variable
33 abs0[255 + i] = (i < 0) ? -i : i;
34 abs1[255 + i] = abs0[255 + i] >> 1;
78 return (abs0[255 + p1 - p0] > thresh) || (abs0[255 + q1 - q0] > thresh);
83 return (2 * abs0[255 + p0 - q0] + abs1[255 + p1 - q1]) <= thresh;
90 if ((2 * abs0[255 + p0 - q0] + abs1[255 + p1 - q1]) > t)
92 return abs0[255 + p3 - p2] <= it && abs0[255 + p2 - p1] <= it &&
93 abs0[25
[all...]
/external/webp/src/enc/
H A Dfilter.c21 static uint8_t abs0[255 + 255 + 1]; // abs(i) variable
33 abs0[255 + i] = (i < 0) ? -i : i;
34 abs1[255 + i] = abs0[255 + i] >> 1;
78 return (abs0[255 + p1 - p0] > thresh) || (abs0[255 + q1 - q0] > thresh);
83 return (2 * abs0[255 + p0 - q0] + abs1[255 + p1 - q1]) <= thresh;
90 if ((2 * abs0[255 + p0 - q0] + abs1[255 + p1 - q1]) > t)
92 return abs0[255 + p3 - p2] <= it && abs0[255 + p2 - p1] <= it &&
93 abs0[25
[all...]
/external/chromium_org/third_party/libwebp/dsp/
H A Ddec.c24 static uint8_t abs0[255 + 255 + 1]; // abs(i) variable
38 abs0[255 + i] = (i < 0) ? -i : i;
39 abs1[255 + i] = abs0[255 + i] >> 1;
535 return (abs0[255 + p1 - p0] > thresh) || (abs0[255 + q1 - q0] > thresh);
540 return (2 * abs0[255 + p0 - q0] + abs1[255 + p1 - q1]) <= thresh;
547 if ((2 * abs0[255 + p0 - q0] + abs1[255 + p1 - q1]) > t)
549 return abs0[255 + p3 - p2] <= it && abs0[255 + p2 - p1] <= it &&
550 abs0[25
[all...]
H A Denc_sse2.c81 const __m128i abs0 = _mm_sub_epi16(xor0, sign0); local
84 const __m128i v0 = _mm_srai_epi16(abs0, 3);
/external/webp/src/dsp/
H A Ddec.c24 static uint8_t abs0[255 + 255 + 1]; // abs(i) variable
38 abs0[255 + i] = (i < 0) ? -i : i;
39 abs1[255 + i] = abs0[255 + i] >> 1;
535 return (abs0[255 + p1 - p0] > thresh) || (abs0[255 + q1 - q0] > thresh);
540 return (2 * abs0[255 + p0 - q0] + abs1[255 + p1 - q1]) <= thresh;
547 if ((2 * abs0[255 + p0 - q0] + abs1[255 + p1 - q1]) > t)
549 return abs0[255 + p3 - p2] <= it && abs0[255 + p2 - p1] <= it &&
550 abs0[25
[all...]
H A Denc_sse2.c81 const __m128i abs0 = _mm_sub_epi16(xor0, sign0); local
84 const __m128i v0 = _mm_srai_epi16(abs0, 3);

Completed in 172 milliseconds