Search | Google it | Results 1 - 1 of 1 for funcall:sqrt from t2ex/bsd_source/lib/libc/src_bsd/math/e_acosh.c (0.00 seconds) |
56: t=x*x; 57: return log(2.0*x-one/(x+sqrt(t-one))); 58: } else { /* 1<x<2 */ 59: t = x-one; 60: return log1p(t+sqrt(2.0*t+t*t)); 61: }