Home
last modified time | relevance | path

Searched refs:PyComplex_FromCComplex (Results 1 – 10 of 10) sorted by relevance

/third_party/python/Modules/clinic/
Dcmathmodule.c.h40 return_value = PyComplex_FromCComplex(_return_value); in cmath_acos()
82 return_value = PyComplex_FromCComplex(_return_value); in cmath_acosh()
124 return_value = PyComplex_FromCComplex(_return_value); in cmath_asin()
166 return_value = PyComplex_FromCComplex(_return_value); in cmath_asinh()
208 return_value = PyComplex_FromCComplex(_return_value); in cmath_atan()
250 return_value = PyComplex_FromCComplex(_return_value); in cmath_atanh()
292 return_value = PyComplex_FromCComplex(_return_value); in cmath_cos()
334 return_value = PyComplex_FromCComplex(_return_value); in cmath_cosh()
376 return_value = PyComplex_FromCComplex(_return_value); in cmath_exp()
418 return_value = PyComplex_FromCComplex(_return_value); in cmath_log10()
[all …]
/third_party/python/Objects/
Dcomplexobject.c226 PyComplex_FromCComplex(Py_complex cval) in PyComplex_FromCComplex() function
253 return PyComplex_FromCComplex(c); in PyComplex_FromDoubles()
465 return PyComplex_FromCComplex(result); in complex_add()
476 return PyComplex_FromCComplex(result); in complex_sub()
487 return PyComplex_FromCComplex(result); in complex_mul()
503 return PyComplex_FromCComplex(quot); in complex_div()
539 return PyComplex_FromCComplex(p); in complex_pow()
548 return PyComplex_FromCComplex(neg); in complex_neg()
559 return PyComplex_FromCComplex(v->cval); in complex_pos()
652 return PyComplex_FromCComplex(c); in complex_conjugate_impl()
/third_party/python/Include/
Dcomplexobject.h45 PyAPI_FUNC(PyObject *) PyComplex_FromCComplex(Py_complex);
/third_party/python/Doc/c-api/
Dcomplex.rst106 .. c:function:: PyObject* PyComplex_FromCComplex(Py_complex v)
/third_party/python/Modules/
Dcmathmodule.c974 return PyComplex_FromCComplex(x); in cmath_log_impl()
1115 return PyComplex_FromCComplex(z); in cmath_rect_impl()
1275 PyComplex_FromCComplex(c_infj())) < 0) { in cmath_exec()
1283 PyComplex_FromCComplex(c_nanj())) < 0) { in cmath_exec()
D_testcapimodule.c1419 return PyComplex_FromCComplex(cval); in getargs_D()
/third_party/python/Python/
Dmodsupport.c378 return PyComplex_FromCComplex( in do_mkvalue()
Dmarshal.c1040 retval = PyComplex_FromCComplex(c); in r_object()
1054 retval = PyComplex_FromCComplex(c); in r_object()
/third_party/python/Doc/data/
Drefcounts.dat351 PyComplex_FromCComplex:PyObject*::+1:
352 PyComplex_FromCComplex::Py_complex v::
/third_party/python/Parser/
Dpegen.c1059 return PyComplex_FromCComplex(compl); in parsenumber_raw()