HomeSort by relevance Sort by last modified time
    Searched refs:MAX_EXP (Results 1 - 6 of 6) 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...]
  /external/bison/lib/
isnan.c 41 # define MAX_EXP LDBL_MAX_EXP
53 # define MAX_EXP DBL_MAX_EXP
65 # define MAX_EXP FLT_MAX_EXP
76 #define EXP_MASK ((MAX_EXP - MIN_EXP) | 7)
  /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)
  /external/valgrind/VEX/switchback/
test_emfloat.c 462 #define MAX_EXP 32767L
707 ** This can happen if the exponent exceeds MAX_EXP.
735 dest->exp=MAX_EXP;
998 /* Does not do anything as ptr->exp is a short and MAX_EXP=37268
999 if (ptr->exp > MAX_EXP)
    [all...]

Completed in 1679 milliseconds