Searched refs:maskLOW (Results 1 – 1 of 1) sorted by relevance
/external/neon_2_sse/ |
D | NEON_2_SSE.h | 14884 __m128i maskLOW, c4, lowclz, mask, hiclz; in vclzq_s8() local 14885 …maskLOW = _mm_set1_epi8(0x0f); //low 4 bits, don't need masking low to avoid zero if MSB is set - … in vclzq_s8() 14889 mask = _mm_and_si128(mask, maskLOW); //low 4 bits, need masking to avoid zero if MSB is set in vclzq_s8() 15076 __m128i maskLOW, mask, lowpopcnt, hipopcnt; in vcntq_u8() local 15077 maskLOW = _mm_set1_epi8(0x0f); //low 4 bits, need masking to avoid zero if MSB is set in vcntq_u8() 15078 mask = _mm_and_si128(a, maskLOW); in vcntq_u8() 15081 mask = _mm_and_si128(mask, maskLOW); //low 4 bits, need masking to avoid zero if MSB is set in vcntq_u8()
|