Home
last modified time | relevance | path

Searched refs:msd (Results 1 – 25 of 32) sorted by relevance

12

/external/crcalc/src/com/hp/creals/
DCR.java390 int msd(int n) { in msd() method in CR
411 int msd = msd(prec); in iter_msd() local
412 if (msd != Integer.MIN_VALUE) return msd; in iter_msd()
418 return msd(n); in iter_msd()
424 int msd() { in msd() method in CR
663 int msd = iter_msd(msd_prec - 2); in toStringFloatRep() local
664 if (msd == Integer.MIN_VALUE) in toStringFloatRep()
666 int exponent = (int)Math.ceil((double)msd / log2_radix); in toStringFloatRep()
1147 int msd_op1 = op1.msd(half_prec); in approximate()
1151 msd_op2 = op2.msd(half_prec); in approximate()
[all …]
DUnaryCRFunction.java321 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()
/external/golang-protobuf/proto/
Dmessage_set.go260 msd, ok := messageSetMap[id]
265 fmt.Fprintf(&b, `"[%s]":`, msd.name)
269 x = reflect.New(msd.t.Elem()).Interface()
/external/python/cpython3/Lib/test/decimaltestdata/
DddInvert.decTest35 -- and at msd and msd-1
Dinvert.decTest35 -- and at msd and msd-1
DdqInvert.decTest35 -- and at msd and msd-1
DddOr.decTest35 -- and at msd and msd-1
DddXor.decTest35 -- and at msd and msd-1
Dand.decTest37 -- and at msd and msd-1
DddAnd.decTest35 -- and at msd and msd-1
Dor.decTest34 -- and at msd and msd-1
Dxor.decTest35 -- and at msd and msd-1
DdqAnd.decTest35 -- and at msd and msd-1
DdqOr.decTest35 -- and at msd and msd-1
DdqXor.decTest35 -- and at msd and msd-1
/external/python/cpython2/Lib/test/decimaltestdata/
Dinvert.decTest35 -- and at msd and msd-1
DddInvert.decTest35 -- and at msd and msd-1
DdqInvert.decTest35 -- and at msd and msd-1
DddOr.decTest35 -- and at msd and msd-1
DddXor.decTest35 -- and at msd and msd-1
DddAnd.decTest35 -- and at msd and msd-1
Dor.decTest34 -- and at msd and msd-1
Dand.decTest37 -- and at msd and msd-1
Dxor.decTest35 -- and at msd and msd-1
/external/python/cpython2/Objects/
Dlongobject.c503 digit msd = v->ob_digit[ndigits - 1]; in _PyLong_NumBits() local
512 msd >>= 1; in _PyLong_NumBits()
513 } while (msd); in _PyLong_NumBits()
4154 digit msd; in long_bit_length() local
4163 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()

12