/src/lib/libm/noieee_src/ |
n_acosh.c | 77 vc(ln2hi, 6.9314718055829871446E-1 ,7217,4031,0000,f7d0, 0, .B17217F7D00000) 80 ic(ln2hi, 6.9314718036912381649E-1, -1, 1.62E42FEE00000) 84 #define ln2hi vccast(ln2hi) macro 98 if(x>big) {t=log1p(x)+ln2lo; return(t+ln2hi);}
|
n_asinh.c | 72 vc(ln2hi, 6.9314718055829871446E-1 ,7217,4031,0000,f7d0, 0, .B17217F7D00000) 75 ic(ln2hi, 6.9314718036912381649E-1, -1, 1.62E42FEE00000) 79 #define ln2hi vccast(ln2hi) macro 98 {s=log1p(t)+ln2lo; return(copysign(s+ln2hi,x));}
|
n_expm1.c | 91 vc(ln2hi, 6.9314718055829871446E-1 ,7217,4031,0000,f7d0, 0, .B17217F7D00000) 96 ic(ln2hi, 6.9314718036912381649E-1, -1, 1.62E42FEE00000) 102 #define ln2hi vccast(ln2hi) macro 136 hi=x-k*ln2hi ; 164 { c=ln2hi+ln2lo; return(-one);} /* ??? -ragge */
|
n_log1p.c | 73 * n*ln2hi + n*ln2lo, where ln2hi is chosen such that the last 75 * double) is 0. This ensures n*ln2hi is exactly representable. 108 vc(ln2hi, 6.9314718055829871446E-1 ,7217,4031,0000,f7d0, 0, .B17217F7D00000) 112 ic(ln2hi, 6.9314718036912381649E-1, -1, 1.62E42FEE00000) 117 #define ln2hi vccast(ln2hi) macro 152 return(k*ln2hi+x);
|
n_exp.c | 89 vc(ln2hi, 6.9314718055829871446E-1 ,7217,4031,0000,f7d0, 0, .B17217F7D00000) 101 #define ln2hi vccast(ln2hi) macro 118 ic(ln2hi, 6.9314718036912381649E-1, -1, 1.62E42FEE00000) 142 hi=x-k*ln2hi; 193 hi=(x-k*ln2hi); /* Exact. */
|
/src/lib/libm/src/ |
b_exp.c | 89 static const double ln2hi = 0x1.62e42fee00000p-1; variable in typeref:typename:const double 114 hi=(x-k*ln2hi); /* Exact. */
|
/src/lib/libm/ld128/ |
b_expl.c | 67 #define ln2hi (ln2hiu.extu_ld) macro 94 hi = x - k * ln2hi; /* Exact. */
|
/src/lib/libm/ld80/ |
b_expl.c | 68 #define ln2hi (ln2hiu.extu_ld) macro 95 hi = x - k * ln2hi; /* Exact. */
|