HomeSort by relevance Sort by last modified time
    Searched refs:MIN_EXP (Results 1 - 3 of 3) sorted by null

  /kernel/tests/net/test/
resilient_rs_test.py 102 MIN_EXP = 1.9 - EPSILON
162 min_exp_bound = accumulate(map(lambda i: MIN_LIN * pow(MIN_EXP, i), range(0, len(rsSendTimes))))
167 for (t, min_exp, max_exp) in zip(rsSendTimes[1:], min_exp_bound, max_exp_bound):
168 self.assertLess(min_exp, t)
  /external/apache-commons-math/src/main/java/org/apache/commons/math/dfp/
DfpDec.java 271 if (exp < MIN_EXP) {
327 inc = power10K(MIN_EXP-mant.length-1);
346 inc = power10K(MIN_EXP-mant.length-1);
Dfp.java 80 * expMin, but don't flush to zero until the exponent reaches MIN_EXP-digits.
82 * 1E(-(MIN_EXP-digits-1)*4), eg, for digits=5, MIN_EXP=-32767, that would
103 public static final int MIN_EXP = -32767;
    [all...]

Completed in 225 milliseconds