gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 1 of 1 for funcall:sqrtf 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
38:             t = fabsf(x);
39:             w = logf((float)2.0*t+one/(sqrtf(x*x+one)+t));
40:         } else {               /* 2.0 > |x| > 2**-28 */
41:             t = x*x;
42:             w =log1pf(fabsf(x)+t/(one+sqrtf(one+t)));
43:         }