Home | History | Annotate | Download | only in opts

Lines Matching refs:xx

58     const __m128i xx = _mm_loadu_si128(reinterpret_cast<const __m128i *>(xy));
62 const __m128i x0_wide = _mm_srli_epi32(xx, 18);
64 const __m128i x1_wide = _mm_and_si128(xx, mask_3FFF);
69 __m128i all_x = _mm_and_si128(_mm_srli_epi32(xx, 14), mask_000F);
474 uint32_t xx = *xy++; // x0:14 | 4 | x1:14
475 unsigned x0 = xx >> 18;
476 unsigned x1 = xx & 0x3FFF;
479 const __m128i all_x = _mm_set1_epi8((xx >> 14) & 0x0F);
548 const uint32_t xx = *xy++; // x0:14 | 4 | x1:14
549 const unsigned x0 = xx >> 18;
550 const unsigned x1 = xx & 0x3FFF;
553 const __m128i all_x = _mm_set1_epi8((xx >> 14) & 0x0F);