Home
last modified time | relevance | path

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

/external/python/cpython2/Include/
Dpymath.h60 #ifndef Py_MATH_E
61 #define Py_MATH_E 2.7182818284590452354 macro
/external/python/cpython2/Modules/
Dcmathmodule.c415 r.real = cos(z.imag) * cosh(x_minus_one) * Py_MATH_E; in c_cosh()
416 r.imag = sin(z.imag) * sinh(x_minus_one) * Py_MATH_E; in c_cosh()
474 r.real = l*cos(z.imag)*Py_MATH_E; in c_exp()
475 r.imag = l*sin(z.imag)*Py_MATH_E; in c_exp()
644 r.real = cos(z.imag) * sinh(x_minus_one) * Py_MATH_E; in c_sinh()
645 r.imag = sin(z.imag) * cosh(x_minus_one) * Py_MATH_E; in c_sinh()
1102 PyModule_AddObject(m, "e", PyFloat_FromDouble(Py_MATH_E)); in initcmath()
Dmathmodule.c1629 PyModule_AddObject(m, "e", PyFloat_FromDouble(Py_MATH_E)); in initmath()