Searched refs:msd (Results 1 – 18 of 18) sorted by relevance
378 int msd(int n) { in msd() method in CR399 int msd = msd(prec); in iter_msd() local400 if (msd != Integer.MIN_VALUE) return msd; in iter_msd()404 return msd(n); in iter_msd()410 int msd() { in msd() method in CR643 int msd = iter_msd(msd_prec - 2); in toStringFloatRep() local644 if (msd == Integer.MIN_VALUE) in toStringFloatRep()646 int exponent = (int)Math.ceil((double)msd / log2_radix); in toStringFloatRep()1113 int msd_op1 = op1.msd(half_prec); in approximate()1117 msd_op2 = op2.msd(half_prec); in approximate()[all …]
321 max_msd[0] = low[0].abs().max(high[0].abs()).msd(); in inverseMonotone_UnaryCRFunction()322 max_arg_prec[0] = high[0].subtract(low[0]).msd() - 4; in inverseMonotone_UnaryCRFunction()324 .divide(high[0].subtract(low[0])).msd(); in inverseMonotone_UnaryCRFunction()610 difference_msd[0] = difference.msd(); in monotoneDerivative_UnaryCRFunction()611 deriv2_msd[0] = appr_diff2.msd() - difference_msd[0] + 4; in monotoneDerivative_UnaryCRFunction()623 int max_delta_left_msd = left_diff.msd(); in monotoneDerivativeCR()625 int max_delta_right_msd = right_diff.msd(); in monotoneDerivativeCR()
554 mp_limb_t msd = b_ptr[b_len - 1]; /* = b[n-1], > 0 */ in divide() local558 s = __builtin_clz (msd); in divide()572 m.value = msd; in divide()583 if (msd >= 0x10000) in divide()585 msd = msd >> 16; in divide()588 if (msd >= 0x100) in divide()590 msd = msd >> 8; in divide()593 if (msd >= 0x10) in divide()595 msd = msd >> 4; in divide()598 if (msd >= 0x4) in divide()[all …]
35 -- and at msd and msd-1
34 -- and at msd and msd-1
37 -- and at msd and msd-1
503 digit msd = v->ob_digit[ndigits - 1]; in _PyLong_NumBits() local512 msd >>= 1; in _PyLong_NumBits()513 } while (msd); in _PyLong_NumBits()4154 digit msd; in long_bit_length() local4163 msd = v->ob_digit[ndigits-1]; in long_bit_length()4164 while (msd >= 32) { in long_bit_length()4166 msd >>= 6; in long_bit_length()4168 msd_bits += (long)(BitLengthTable[msd]); in long_bit_length()
283 uByte *msd; /* -> most significant digit */ member
325 V(msd, MSD, 0xED3F) /* type = RXF MULTIPLY AND SUBTRACT (long HFP) */ \