gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 3 of 3 for funcall:log1pf (0.00 seconds)
t2ex
bsd_source/lib/libc/src_bsd/math/e_acoshf.c - 1.4KB - 45 lines
42:             t = x-one;
43:             return log1pf(t+sqrtf((float)2.0*t+t*t));
44:         }
bsd_source/lib/libc/src_bsd/math/e_atanhf.c - 1.2KB - 41 lines
36:             t = x+x;
37:             t = (float)0.5*log1pf(t+t*x/(one-x));
38:         } else 
More results from e_atanhf.c
bsd_source/lib/libc/src_bsd/math/s_asinhf.c - 1.4KB - 45 lines
41:             t = x*x;
42:             w =log1pf(fabsf(x)+t/(one+sqrtf(one+t)));
43:         }