gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 1 of 1 for funcall:fabsf from t2ex/bsd_source/lib/libc/src_bsd/math/s_asinhf.c (0.00 seconds)
t2ex
bsd_source/lib/libc/src_bsd/math/s_asinhf.c - 1.4KB - 45 lines
35:         if(ix>0x4d800000) {    /* |x| > 2**28 */
36:             w = logf(fabsf(x))+ln2;
37:         } else if (ix>0x40000000) {    /* 2**28 > |x| > 2.0 */
38:             t = fabsf(x);
39:             w = logf((float)2.0*t+one/(sqrtf(x*x+one)+t));
41: t = x*x; 42: w =log1pf(fabsf(x)+t/(one+sqrtf(one+t))); 43: }