gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 1 of 1 for funcall:sqrtf from t2ex/bsd_source/lib/libc/src_bsd/math/e_acoshf.c (0.00 seconds)
t2ex
bsd_source/lib/libc/src_bsd/math/e_acoshf.c - 1.4KB - 45 lines
39:             t=x*x;
40:             return logf((float)2.0*x-one/(x+sqrtf(t-one)));
41:         } else {                       /* 1<x<2 */
42:             t = x-one;
43:             return log1pf(t+sqrtf((float)2.0*t+t*t));
44:         }