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

  /bionic/libm/upstream-freebsd/lib/msun/src/
e_hypotl.c 38 #define ESW(exp) (MAX_EXP - 1 + (exp)) /* expsign word */
40 #define MAX_EXP LDBL_MAX_EXP
63 if(ha > ESW(MAX_EXP/2-12)) { /* a>2**(MAX_EXP/2-12) */
64 if(ha >= ESW(MAX_EXP)) { /* Inf or NaN */
71 if (hb >= ESW(MAX_EXP) && manh == LDBL_NBIT && manl == 0) w = b;
74 /* scale a and b by 2**-(MAX_EXP/2+88) */
75 ha -= DESW(MAX_EXP/2+88); hb -= DESW(MAX_EXP/2+88);
76 k += MAX_EXP/2+88
    [all...]
  /kernel/tests/net/test/
resilient_rs_test.py 104 MAX_EXP = 2.1 + EPSILON
163 max_exp_bound = accumulate(map(lambda i: MAX_LIN * pow(MAX_EXP, i), range(0, len(rsSendTimes))))
167 for (t, min_exp, max_exp) in zip(rsSendTimes[1:], min_exp_bound, max_exp_bound):
169 self.assertGreater(max_exp, t)
  /external/apache-commons-math/src/main/java/org/apache/commons/math/dfp/
DfpDec.java 277 if (exp > MAX_EXP) {
Dfp.java 107 public static final int MAX_EXP = 32768;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
real.h 37 #define MAX_EXP ((1 << (EXP_BITS - 1)) - 1)

Completed in 472 milliseconds