gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 1 of 1 for funcall:fabsf from t2ex/bsd_source/lib/libc/src_bsd/math/s_tanhf.c (0.00 seconds)
t2ex
bsd_source/lib/libc/src_bsd/math/s_tanhf.c - 1.6KB - 54 lines
42:             if (ix>=0x3f800000) {      /* |x|>=1  */
43:                 t = expm1f(two*fabsf(x));
44:                 z = one - two/(t+two);
45:             } else {
46:                 t = expm1f(-two*fabsf(x));
47:                 z= -t/(t+two);