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

  /external/libvpx/libvpx/vp8/encoder/x86/
quantize_ssse3.c 54 __m128i sz0, sz1, x, x0, x1, y0, y1, zeros, abs0, abs1; local
79 abs0 = y0;
102 x0 = _mm_cmpgt_epi16(abs0, zeros);
  /external/opencv3/3rdparty/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/opencv3/3rdparty/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...]
  /system/core/logd/
LogKlog.cpp 836 unsigned abs0 = (diff0 < 0) ? -diff0 : diff0; local
840 ((abs0 + 1) % (timezones_seconds / near_seconds)) <= 2) {
841 abs0 = (abs0 + 1) / (timezones_seconds / near_seconds) *
843 now.tv_sec -= (diff0 < 0) ? -abs0 : abs0;
  /external/webp/src/dsp/
enc_sse41.c 43 const __m128i abs0 = _mm_abs_epi16(out0); local
45 const __m128i v0 = _mm_srai_epi16(abs0, 3);
dec_clip_tables.c 20 static const uint8_t abs0[255 + 255 + 1] = { variable
331 static uint8_t abs0[255 + 255 + 1]; variable
345 const uint8_t* const VP8kabs0 = &abs0[255];
352 abs0[255 + i] = (i < 0) ? -i : i;
enc_sse2.c 530 const __m128i abs0 = _mm_max_epi16(out0, d0); // abs(v), 16b local
533 const __m128i v0 = _mm_srai_epi16(abs0, 3);
    [all...]

Completed in 1285 milliseconds