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

  /external/chromium_org/third_party/libwebp/enc/
filter.c 21 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[255 + p1 - p0] <= it && abs0[255 + q3 - q2] <= it &
    [all...]
  /external/webp/src/enc/
filter.c 21 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[255 + p1 - p0] <= it && abs0[255 + q3 - q2] <= it &
    [all...]
  /external/chromium_org/third_party/libwebp/dsp/
dec.c 24 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[255 + p1 - p0] <= it && abs0[255 + q3 - q2] <= it &
    [all...]
enc_sse2.c 81 const __m128i abs0 = _mm_sub_epi16(xor0, sign0); local
84 const __m128i v0 = _mm_srai_epi16(abs0, 3);
    [all...]
  /external/webp/src/dsp/
dec.c 24 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[255 + p1 - p0] <= it && abs0[255 + q3 - q2] <= it &
    [all...]
enc_sse2.c 81 const __m128i abs0 = _mm_sub_epi16(xor0, sign0); local
84 const __m128i v0 = _mm_srai_epi16(abs0, 3);
    [all...]

Completed in 3934 milliseconds