Home
last modified time | relevance | path

Searched refs:m_log1p (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython2/Modules/
D_math.c71 return m_log1p(t + sqrt(2.0*t + t*t)); in _Py_acosh()
107 w = m_log1p(absx + t / (1.0 + sqrt(1.0 + t))); in _Py_asinh()
153 t = 0.5 * m_log1p(t + t*absx / (1.0 - absx)); in _Py_atanh()
156 t = 0.5 * m_log1p((absx + absx) / (1.0 - absx)); in _Py_atanh()
D_math.h41 #define m_log1p _Py_log1p macro
Dcmathmodule.c346 r.real = m_log1p(4.*z.real/((1-z.real)*(1-z.real) + ay*ay))/4.; in c_atanh()
556 r.real = m_log1p((am-1)*(am+1)+an*an)/2.; in c_log()
Dmathmodule.c851 FUNC1(log1p, m_log1p, 1,