Lines Matching defs:count
184 vec_slli_epi32 (__m128i vsrc, unsigned int count)
188 if (count >= 32)
190 else if (count == 0)
193 /* In VMX, all shift count fields must contain the same value */
194 vec_count.m128si = (vector signed int) vec_splats (count);
199 vec_srli_epi32 (__m128i vsrc, unsigned int count)
203 if (count >= 32)
205 else if (count == 0)
208 /* In VMX, all shift count fields must contain the same value */
209 vec_count.m128si = (vector signed int) vec_splats (count);
214 vec_srai_epi32 (__m128i vsrc, unsigned int count)
218 if (count >= 32)
220 else if (count == 0)
223 /* In VMX, all shift count fields must contain the same value */
224 vec_count.m128si = (vector signed int) vec_splats (count);