Home | History | Annotate | Download | only in opts

Lines Matching refs:xx

57     const __m128i xx = _mm_loadu_si128(reinterpret_cast<const __m128i *>(xy));
61 const __m128i x0_wide = _mm_srli_epi32(xx, 18);
63 const __m128i x1_wide = _mm_and_si128(xx, mask_3FFF);
68 __m128i all_x = _mm_and_si128(_mm_srli_epi32(xx, 14), mask_000F);
473 uint32_t xx = *xy++; // x0:14 | 4 | x1:14
474 unsigned x0 = xx >> 18;
475 unsigned x1 = xx & 0x3FFF;
478 const __m128i all_x = _mm_set1_epi8((xx >> 14) & 0x0F);
547 const uint32_t xx = *xy++; // x0:14 | 4 | x1:14
548 const unsigned x0 = xx >> 18;
549 const unsigned x1 = xx & 0x3FFF;
552 const __m128i all_x = _mm_set1_epi8((xx >> 14) & 0x0F);