Lines Matching refs:shiftCount
49 static bits64X shortShift64Left( bits64X a, int8 shiftCount ) in shortShift64Left() argument
53 negShiftCount = ( - shiftCount & 31 ); in shortShift64Left()
54 a.a0 = ( a.a0<<shiftCount ) | ( a.a1>>negShiftCount ); in shortShift64Left()
55 a.a1 <<= shiftCount; in shortShift64Left()
60 static bits64X shortShift64RightJamming( bits64X a, int8 shiftCount ) in shortShift64RightJamming() argument
65 negShiftCount = ( - shiftCount & 31 ); in shortShift64RightJamming()
67 a.a1 = ( a.a0<<negShiftCount ) | ( a.a1>>shiftCount ) | ( extra != 0 ); in shortShift64RightJamming()
68 a.a0 >>= shiftCount; in shortShift64RightJamming()
213 int16 shiftCount; in floatXToInt32() local
222 shiftCount = 52 - ax.exp; in floatXToInt32()
223 if ( 56 < shiftCount ) { in floatXToInt32()
228 while ( 0 < shiftCount ) { in floatXToInt32()
230 --shiftCount; in floatXToInt32()
237 if ( ( shiftCount < 0 ) in floatXToInt32()
565 int16 shiftCount, i; in floatXRoundToInt() local
568 shiftCount = 52 - ax.exp; in floatXRoundToInt()
569 if ( shiftCount <= 0 ) return ax; in floatXRoundToInt()
570 if ( 55 < shiftCount ) { in floatXRoundToInt()
576 while ( 0 < shiftCount ) { in floatXRoundToInt()
579 --shiftCount; in floatXRoundToInt()