Lines Matching refs:count

54  uint64_t softfloat_shortShiftRightJam64( uint64_t a, uint_fast8_t count )  in softfloat_shortShiftRightJam64()  argument
55 { return a>>count | ((a & (((uint_fast64_t) 1<<count) - 1)) != 0); } in softfloat_shortShiftRightJam64()
57 uint64_t softfloat_shortShiftRightJam64( uint64_t a, uint_fast8_t count );
72 INLINE uint32_t softfloat_shiftRightJam32( uint32_t a, uint_fast16_t count ) in softfloat_shiftRightJam32() argument
75 (count < 31) ? a>>count | ((uint32_t) (a<<(-count & 31)) != 0) in softfloat_shiftRightJam32()
79 uint32_t softfloat_shiftRightJam32( uint32_t a, uint_fast16_t count );
94 INLINE uint64_t softfloat_shiftRightJam64( uint64_t a, uint_fast32_t count ) in softfloat_shiftRightJam64() argument
97 (count < 63) ? a>>count | ((uint64_t) (a<<(-count & 63)) != 0) in softfloat_shiftRightJam64()
101 uint64_t softfloat_shiftRightJam64( uint64_t a, uint_fast32_t count );
120 uint_fast8_t count = 0; in softfloat_countLeadingZeros32() local
122 count = 16; in softfloat_countLeadingZeros32()
126 count += 8; in softfloat_countLeadingZeros32()
129 count += softfloat_countLeadingZeros8[a>>24]; in softfloat_countLeadingZeros32()
130 return count; in softfloat_countLeadingZeros32()
246 softfloat_shortShiftLeft128( uint64_t a64, uint64_t a0, uint_fast8_t count ) in softfloat_shortShiftLeft128() argument
249 z.v64 = a64<<count | a0>>(-count & 63); in softfloat_shortShiftLeft128()
250 z.v0 = a0<<count; in softfloat_shortShiftLeft128()
255 softfloat_shortShiftLeft128( uint64_t a64, uint64_t a0, uint_fast8_t count );
267 softfloat_shortShiftRight128( uint64_t a64, uint64_t a0, uint_fast8_t count ) in softfloat_shortShiftRight128() argument
270 z.v64 = a64>>count; in softfloat_shortShiftRight128()
271 z.v0 = a64<<(-count & 63) | a0>>count; in softfloat_shortShiftRight128()
276 softfloat_shortShiftRight128( uint64_t a64, uint64_t a0, uint_fast8_t count );
289 uint64_t a, uint64_t extra, uint_fast8_t count ) in softfloat_shortShiftRightJam64Extra() argument
292 z.v = a>>count; in softfloat_shortShiftRightJam64Extra()
293 z.extra = a<<(-count & 63) | (extra != 0); in softfloat_shortShiftRightJam64Extra()
299 uint64_t a, uint64_t extra, uint_fast8_t count );
315 uint64_t a64, uint64_t a0, uint_fast8_t count ) in softfloat_shortShiftRightJam128() argument
317 uint_fast8_t negCount = -count; in softfloat_shortShiftRightJam128()
319 z.v64 = a64>>count; in softfloat_shortShiftRightJam128()
321 a64<<(negCount & 63) | a0>>count in softfloat_shortShiftRightJam128()
328 uint64_t a64, uint64_t a0, uint_fast8_t count );
341 uint64_t a64, uint64_t a0, uint64_t extra, uint_fast8_t count ) in softfloat_shortShiftRightJam128Extra() argument
343 uint_fast8_t negCount = -count; in softfloat_shortShiftRightJam128Extra()
345 z.v.v64 = a64>>count; in softfloat_shortShiftRightJam128Extra()
346 z.v.v0 = a64<<(negCount & 63) | a0>>count; in softfloat_shortShiftRightJam128Extra()
353 uint64_t a64, uint64_t a0, uint64_t extra, uint_fast8_t count );
378 uint64_t a, uint64_t extra, uint_fast32_t count ) in softfloat_shiftRightJam64Extra() argument
381 if ( count < 64 ) { in softfloat_shiftRightJam64Extra()
382 z.v = a>>count; in softfloat_shiftRightJam64Extra()
383 z.extra = a<<(-count & 63); in softfloat_shiftRightJam64Extra()
386 z.extra = (count == 64) ? a : (a != 0); in softfloat_shiftRightJam64Extra()
394 uint64_t a, uint64_t extra, uint_fast32_t count );
410 softfloat_shiftRightJam128( uint64_t a64, uint64_t a0, uint_fast32_t count );
433 uint64_t a64, uint64_t a0, uint64_t extra, uint_fast32_t count );
451 const uint64_t *aPtr, uint_fast32_t count, uint64_t *zPtr );
633 uint64_t a, uint_fast8_t count, uint32_t *zPtr ) in softfloat_shortShiftLeft64To96M() argument
635 zPtr[indexWord( 3, 0 )] = (uint32_t) a<<count; in softfloat_shortShiftLeft64To96M()
636 a >>= 32 - count; in softfloat_shortShiftLeft64To96M()
643 uint64_t a, uint_fast8_t count, uint32_t *zPtr );
661 uint_fast8_t count,
671 #define softfloat_shortShiftLeft96M( aPtr, count, zPtr ) softfloat_shortShiftLeftM( 3, aPtr, count,… argument
679 #define softfloat_shortShiftLeft128M( aPtr, count, zPtr ) softfloat_shortShiftLeftM( 4, aPtr, count argument
687 #define softfloat_shortShiftLeft160M( aPtr, count, zPtr ) softfloat_shortShiftLeftM( 5, aPtr, count argument
705 uint32_t count,
715 #define softfloat_shiftLeft96M( aPtr, count, zPtr ) softfloat_shiftLeftM( 3, aPtr, count, zPtr ) argument
723 #define softfloat_shiftLeft128M( aPtr, count, zPtr ) softfloat_shiftLeftM( 4, aPtr, count, zPtr ) argument
731 #define softfloat_shiftLeft160M( aPtr, count, zPtr ) softfloat_shiftLeftM( 5, aPtr, count, zPtr ) argument
748 uint_fast8_t count,
758 #define softfloat_shortShiftRight128M( aPtr, count, zPtr ) softfloat_shortShiftRightM( 4, aPtr, cou… argument
766 #define softfloat_shortShiftRight160M( aPtr, count, zPtr ) softfloat_shortShiftRightM( 5, aPtr, cou… argument
790 …define softfloat_shortShiftRightJam160M( aPtr, count, zPtr ) softfloat_shortShiftRightJamM( 5, aPt… argument
808 uint32_t count,
818 #define softfloat_shiftRight96M( aPtr, count, zPtr ) softfloat_shiftRightM( 3, aPtr, count, zPtr ) argument
839 uint32_t count,
849 #define softfloat_shiftRightJam96M( aPtr, count, zPtr ) softfloat_shiftRightJamM( 3, aPtr, count, z… argument
857 #define softfloat_shiftRightJam128M( aPtr, count, zPtr ) softfloat_shiftRightJamM( 4, aPtr, count, … argument
865 #define softfloat_shiftRightJam160M( aPtr, count, zPtr ) softfloat_shiftRightJamM( 5, aPtr, count, … argument
1102 uint_fast8_t count,
1114 #define softfloat_remStep96MBy32( remPtr, count, bPtr, q, zPtr ) softfloat_remStepMBy32( 3, remPtr,… argument
1122 #define softfloat_remStep128MBy32( remPtr, count, bPtr, q, zPtr ) softfloat_remStepMBy32( 4, remPtr… argument
1130 #define softfloat_remStep160MBy32( remPtr, count, bPtr, q, zPtr ) softfloat_remStepMBy32( 5, remPtr… argument