Searched refs:sqrtpow (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Modules/ |
D | mathmodule.c | 233 double absx, r, y, z, sqrtpow; in m_tgamma() local 303 sqrtpow = pow(y, absx / 2.0 - 0.25); in m_tgamma() 304 r /= sqrtpow; in m_tgamma() 305 r /= sqrtpow; in m_tgamma() 315 sqrtpow = pow(y, absx / 2.0 - 0.25); in m_tgamma() 316 r *= sqrtpow; in m_tgamma() 317 r *= sqrtpow; in m_tgamma()
|
/external/python/cpython3/Modules/ |
D | mathmodule.c | 267 double absx, r, y, z, sqrtpow; in m_tgamma() local 338 sqrtpow = pow(y, absx / 2.0 - 0.25); in m_tgamma() 339 r /= sqrtpow; in m_tgamma() 340 r /= sqrtpow; in m_tgamma() 350 sqrtpow = pow(y, absx / 2.0 - 0.25); in m_tgamma() 351 r *= sqrtpow; in m_tgamma() 352 r *= sqrtpow; in m_tgamma()
|