Lines Matching refs:msd
396 int msd(int n) { in msd() method in CR
417 int msd = msd(prec); in iter_msd() local
418 if (msd != Integer.MIN_VALUE) return msd; in iter_msd()
424 return msd(n); in iter_msd()
430 int msd() { in msd() method in CR
671 int msd = iter_msd(msd_prec - 2); in toStringFloatRep() local
672 if (msd == Integer.MIN_VALUE) in toStringFloatRep()
674 int exponent = (int)Math.ceil((double)msd / log2_radix); in toStringFloatRep()
1155 int msd_op1 = op1.msd(half_prec); in approximate()
1159 msd_op2 = op2.msd(half_prec); in approximate()
1197 int msd = op.msd(); in approximate() local
1198 int inv_msd = 1 - msd; in approximate()
1213 int prec_needed = msd - digits_needed; in approximate()
1512 int msd = op.iter_msd(max_op_prec_needed); in approximate() local
1513 if (msd <= max_op_prec_needed) return big0; in approximate()
1514 int result_msd = msd/2; // +- 1 in approximate()
1537 int op_prec = (msd - fp_op_prec) & ~1; in approximate()