Home
last modified time | relevance | path

Searched refs:Py_MATH_E (Results 1 – 3 of 3) sorted by relevance

/third_party/python/Include/
Dpymath.h54 #ifndef Py_MATH_E
55 #define Py_MATH_E 2.7182818284590452354 macro
/third_party/python/Modules/
Dcmathmodule.c520 r.real = cos(z.imag) * cosh(x_minus_one) * Py_MATH_E; in cmath_cosh_impl()
521 r.imag = sin(z.imag) * sinh(x_minus_one) * Py_MATH_E; in cmath_cosh_impl()
581 r.real = l*cos(z.imag)*Py_MATH_E; in cmath_exp_impl()
582 r.imag = l*sin(z.imag)*Py_MATH_E; in cmath_exp_impl()
756 r.real = cos(z.imag) * sinh(x_minus_one) * Py_MATH_E; in cmath_sinh_impl()
757 r.imag = sin(z.imag) * cosh(x_minus_one) * Py_MATH_E; in cmath_sinh_impl()
1263 if (PyModule_AddObject(mod, "e", PyFloat_FromDouble(Py_MATH_E)) < 0) { in cmath_exec()
Dmathmodule.c3526 if (PyModule_AddObject(module, "e", PyFloat_FromDouble(Py_MATH_E)) < 0) { in math_exec()