HomeSort by relevance Sort by last modified time
    Searched defs:twos (Results 1 - 2 of 2) sorted by null

  /external/libaom/libaom/av1/common/x86/
cfl_avx2.c 66 const __m256i twos = _mm256_set1_epi8(2); // Thirty two twos local
74 __m256i top_16x16 = _mm256_maddubs_epi16(top, twos);
75 __m256i bot_16x16 = _mm256_maddubs_epi16(bot, twos);
cfl_ssse3.c 44 const __m128i twos = _mm_set1_epi8(2); local
51 top = _mm_maddubs_epi16(top, twos);
53 bot = _mm_maddubs_epi16(bot, twos);
58 top = _mm_maddubs_epi16(top, twos);
60 bot = _mm_maddubs_epi16(bot, twos);
65 top = _mm_maddubs_epi16(top, twos);
67 bot = _mm_maddubs_epi16(bot, twos);
74 top_1 = _mm_maddubs_epi16(top_1, twos);
75 bot_1 = _mm_maddubs_epi16(bot_1, twos);

Completed in 243 milliseconds