gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 1 of 1 for funcall:sqrt from t2ex/bsd_source/lib/libc/src_bsd/math/s_asinh.c (0.00 seconds)
t2ex
bsd_source/lib/libc/src_bsd/math/s_asinh.c - 1.9KB - 67 lines
51:             t = fabs(x);
52:             w = log(2.0*t+one/(sqrt(x*x+one)+t));
53:         } else {               /* 2.0 > |x| > 2**-28 */
54:             t = x*x;
55:             w =log1p(fabs(x)+t/(one+sqrt(one+t)));
56:         }