HomeSort by relevance Sort by last modified time
    Searched refs:LDBL_MAX_EXP (Results 1 - 25 of 42) sorted by null

1 2

  /bionic/libc/upstream-openbsd/lib/libc/stdio/
floatio.h 48 * conversions are supported, ceil(log10(LDBL_MAX_EXP)). But since it
52 #if LDBL_MAX_EXP > 999999
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_rintl.c 36 #if LDBL_MAX_EXP != 0x4000
41 #define BIAS (LDBL_MAX_EXP - 1)
67 if (ex == BIAS + LDBL_MAX_EXP)
e_atanhl.c 44 #if LDBL_MAX_EXP != 0x4000
49 #define BIAS (LDBL_MAX_EXP - 1)
s_ilogbl.c 47 } else if (u.bits.exp < (LDBL_MAX_EXP << 1) - 1)
48 return (u.bits.exp - LDBL_MAX_EXP + 1);
s_logbl.c 51 if (u.bits.exp < (LDBL_MAX_EXP << 1) - 1) /* normal */
52 return ((long double)(u.bits.exp - LDBL_MAX_EXP + 1));
e_atan2l.c 61 if ((exptx==BIAS+LDBL_MAX_EXP &&
63 (expty==BIAS+LDBL_MAX_EXP &&
84 if(exptx==BIAS+LDBL_MAX_EXP) {
85 if(expty==BIAS+LDBL_MAX_EXP) {
102 if(expty==BIAS+LDBL_MAX_EXP)
s_frexpl.c 34 #if LDBL_MAX_EXP != 0x4000
e_acoshl.c 44 #if LDBL_MAX_EXP != 0x4000
49 #define BIAS (LDBL_MAX_EXP - 1)
s_asinhl.c 46 #if LDBL_MAX_EXP != 0x4000
51 #define BIAS (LDBL_MAX_EXP - 1)
s_truncl.c 45 int e = u.bits.exp - LDBL_MAX_EXP + 1;
e_fmodl.c 23 #define BIAS (LDBL_MAX_EXP - 1)
79 (ux.bits.exp == BIAS + LDBL_MAX_EXP) || /* or x not finite */
80 (uy.bits.exp == BIAS + LDBL_MAX_EXP &&
s_cbrtl.c 29 #define BIAS (LDBL_MAX_EXP - 1)
53 if (k == BIAS + LDBL_MAX_EXP)
s_modfl.c 64 e = ux.bits.exp - LDBL_MAX_EXP + 1;
s_nexttoward.c 28 #if LDBL_MAX_EXP != 0x4000
s_nexttowardf.c 21 #define LDBL_INFNAN_EXP (LDBL_MAX_EXP * 2 - 1)
s_scalbnl.c 36 #if LDBL_MAX_EXP != 0x4000
s_atanl.c 45 if(expt == BIAS + LDBL_MAX_EXP &&
  /external/bison/lib/
float.in.h 47 # undef LDBL_MAX_EXP
48 # define LDBL_MAX_EXP 16384
80 # undef LDBL_MAX_EXP
81 # define LDBL_MAX_EXP 16384
  /bionic/libc/upstream-openbsd/lib/libc/gdtoa/
ldtoa.c 55 LDBL_MAX_EXP - LDBL_MANT_DIG, /* emax */
77 be = p->ext_exp - (LDBL_MAX_EXP - 1) - (LDBL_MANT_DIG - 1);
  /external/libcxx/test/depr/depr.c.headers/
float_h.pass.cpp 86 #ifndef LDBL_MAX_EXP
87 #error LDBL_MAX_EXP not defined
  /external/libcxx/test/language.support/support.limits/c.limits/
cfloat.pass.cpp 86 #ifndef LDBL_MAX_EXP
87 #error LDBL_MAX_EXP not defined
  /external/libcxx/test/language.support/support.limits/limits/numeric.limits.members/
max_exponent.pass.cpp 52 test<long double, LDBL_MAX_EXP>();
  /external/clang/lib/Headers/
float.h 54 # undef LDBL_MAX_EXP
100 #define LDBL_MAX_EXP __LDBL_MAX_EXP__
  /external/libcxx/include/support/win32/
limits_win32.h 55 #define __LDBL_MAX_EXP__ LDBL_MAX_EXP
  /bionic/libm/upstream-freebsd/lib/msun/ld128/
s_exp2l.c 39 #define BIAS (LDBL_MAX_EXP - 1)
40 #define EXPMASK (BIAS + LDBL_MAX_EXP)
367 if (ix == BIAS + LDBL_MAX_EXP) {
406 v.xbits.expsign = LDBL_MAX_EXP - 1 + k;
409 v.xbits.expsign = LDBL_MAX_EXP - 1 + k + 10000;
421 if (k == LDBL_MAX_EXP)

Completed in 358 milliseconds

1 2