Searched refs:a_shift (Results 1 – 2 of 2) sorted by relevance
211 int a_shift; in IntegerDoubleMultiply() local212 const int64_t a_fraction = IntegerFrExp(a, &a_shift); in IntegerDoubleMultiply()216 if (a_shift == std::numeric_limits<int>::max() || in IntegerDoubleMultiply()220 const int result_shift = a_shift + b_shift + 1; in IntegerDoubleMultiply()226 int a_shift; in IntegerDoubleCompare() local227 const int64_t a_fraction = IntegerFrExp(a, &a_shift); in IntegerDoubleCompare()232 if (a_shift == std::numeric_limits<int>::max() || in IntegerDoubleCompare()241 } else if (a_shift < b_shift) { in IntegerDoubleCompare()243 } 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