Home
last modified time | relevance | path

Searched refs:loghelper (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Modules/
Dmathmodule.c1887 loghelper(PyObject* arg, double (*func)(double), const char *funcname) in loghelper() function
1947 num = loghelper(x, m_log, "log"); in math_log_impl()
1951 den = loghelper(base, m_log, "log"); in math_log_impl()
1977 return loghelper(x, m_log2, "log2"); in math_log2()
1994 return loghelper(x, m_log10, "log10"); in math_log10()
/external/python/cpython2/Modules/
Dmathmodule.c1275 loghelper(PyObject* arg, double (*func)(double), char *funcname) in loghelper() function
1323 num = loghelper(arg, m_log, "log"); in math_log()
1327 den = loghelper(base, m_log, "log"); in math_log()
1347 return loghelper(arg, m_log10, "log10"); in math_log10()