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

  /external/webp/src/dsp/
yuv_neon.c 178 #define MAX_Y ((1 << 10) - 1) // 10b precision over 16b-arithmetic
180 return (v < 0) ? 0 : (v > MAX_Y) ? MAX_Y : (uint16_t)v;
187 const int16x8_t max = vdupq_n_s16(MAX_Y);
233 const int16x8_t max = vdupq_n_s16(MAX_Y);
271 #undef MAX_Y
yuv.c 198 #define MAX_Y ((1 << 10) - 1) // 10b precision over 16b-arithmetic
200 return (v < 0) ? 0 : (v > MAX_Y) ? MAX_Y : (uint16_t)v;
237 #undef MAX_Y
yuv_sse2.c 752 #define MAX_Y ((1 << 10) - 1) // 10b precision over 16b-arithmetic
754 return (v < 0) ? 0 : (v > MAX_Y) ? MAX_Y : (uint16_t)v;
763 const __m128i max = _mm_set1_epi16(MAX_Y);
812 const __m128i max = _mm_set1_epi16(MAX_Y);
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
GridLayoutTest.java 57 public static final int MAX_Y = 2000;
264 p.layout(0, 0, MAX_X, MAX_Y);

Completed in 54 milliseconds