Searched refs:negCount (Results 1 – 11 of 11) sorted by relevance
48 int_fast32_t negCount; in softfloat_shiftRightJam128Extra() local51 negCount = -count; in softfloat_shiftRightJam128Extra()54 z.v.v0 = a64<<(negCount & 63) | a0>>count; in softfloat_shiftRightJam128Extra()55 z.extra = a0<<(negCount & 63); in softfloat_shiftRightJam128Extra()65 z.extra = a64<<(negCount & 63); in softfloat_shiftRightJam128Extra()
48 int_fast8_t negCount; in softfloat_shortShiftRightJam128() local51 negCount = -count; in softfloat_shortShiftRightJam128()54 a64<<(negCount & 63) | a0>>count in softfloat_shortShiftRightJam128()55 | ((uint64_t) (a0<<(negCount & 63)) != 0); in softfloat_shortShiftRightJam128()
48 uint_fast8_t negCount; in softfloat_shortShiftRightJam128Extra() local51 negCount = -count; in softfloat_shortShiftRightJam128Extra()53 z.v.v0 = a64<<(negCount & 63) | a0>>count; in softfloat_shortShiftRightJam128Extra()54 z.extra = a0<<(negCount & 63) | (extra != 0); in softfloat_shortShiftRightJam128Extra()
47 int_fast32_t negCount; in softfloat_shiftRightJam128() local51 negCount = -count; in softfloat_shiftRightJam128()54 a64<<(negCount & 63) | a0>>count in softfloat_shiftRightJam128()55 | ((uint64_t) (a0<<(negCount & 63)) != 0); in softfloat_shiftRightJam128()
52 uint_fast8_t negCount; in softfloat_shortShiftRightExtendM() local56 negCount = -count; in softfloat_shortShiftRightExtendM()63 *zPtr = wordA<<(negCount & 31) | partWordZ; in softfloat_shortShiftRightExtendM()
52 uint_fast8_t negCount; in softfloat_shortShiftLeftM() local56 negCount = -count; in softfloat_shortShiftLeftM()62 zPtr[index] = partWordZ | wordA>>(negCount & 31); in softfloat_shortShiftLeftM()
52 uint_fast8_t negCount; in softfloat_shortShiftRightM() local56 negCount = -count; in softfloat_shortShiftRightM()62 zPtr[index] = wordA<<(negCount & 31) | partWordZ; in softfloat_shortShiftRightM()
52 uint_fast8_t negCount; in softfloat_shortShiftRightJamM() local56 negCount = -count; in softfloat_shortShiftRightJamM()64 zPtr[index] = wordA<<(negCount & 31) | partWordZ; in softfloat_shortShiftRightJamM()
54 uint_fast8_t negCount; in softfloat_remStepMBy32() local60 negCount = -count; in softfloat_remStepMBy32()71 wordShiftedRem = wordRem>>(negCount & 31); in softfloat_remStepMBy32()
53 uint_fast8_t negCount; in softfloat_shortShiftRightJamM() local57 negCount = -count; in softfloat_shortShiftRightJamM()65 zPtr[index] = wordA<<(negCount & 63) | partWordZ; in softfloat_shortShiftRightJamM()
317 uint_fast8_t negCount = -count; in softfloat_shortShiftRightJam128() local321 a64<<(negCount & 63) | a0>>count in softfloat_shortShiftRightJam128()322 | ((uint64_t) (a0<<(negCount & 63)) != 0); in softfloat_shortShiftRightJam128()343 uint_fast8_t negCount = -count; in softfloat_shortShiftRightJam128Extra() local346 z.v.v0 = a64<<(negCount & 63) | a0>>count; in softfloat_shortShiftRightJam128Extra()347 z.extra = a0<<(negCount & 63) | (extra != 0); in softfloat_shortShiftRightJam128Extra()
Completed in 12 milliseconds