Searched refs:a_shift (Results 1 – 2 of 2) sorted by relevance
225 int a_shift; in IntegerDoubleMultiply() local226 const int64_t a_fraction = IntegerFrExp(a, &a_shift); in IntegerDoubleMultiply()230 if (a_shift == std::numeric_limits<int>::max() || in IntegerDoubleMultiply()234 const int result_shift = a_shift + b_shift + 1; in IntegerDoubleMultiply()240 int a_shift; in IntegerDoubleCompare() local241 const int64_t a_fraction = IntegerFrExp(a, &a_shift); in IntegerDoubleCompare()246 if (a_shift == std::numeric_limits<int>::max() || in IntegerDoubleCompare()255 } else if (a_shift < b_shift) { in IntegerDoubleCompare()257 } else if (a_shift > b_shift) { in IntegerDoubleCompare()
8505 __m128i zero, maskA, maskGT0, a0, a_masked, a_shift; variable8515 a_shift = _mm_slli_epi32 (a0, b);8516 return _mm_or_si128 (a_shift, a_masked); //actual saturation