Home
last modified time | relevance | path

Searched refs:PyComplex_Type (Results 1 – 17 of 17) sorted by relevance

/external/python/cpython3/Include/
Dcomplexobject.h39 PyAPI_DATA(PyTypeObject) PyComplex_Type;
41 #define PyComplex_Check(op) PyObject_TypeCheck(op, &PyComplex_Type)
42 #define PyComplex_CheckExact(op) Py_IS_TYPE(op, &PyComplex_Type)
/external/python/cpython2/Include/
Dcomplexobject.h45 PyAPI_DATA(PyTypeObject) PyComplex_Type;
47 #define PyComplex_Check(op) PyObject_TypeCheck(op, &PyComplex_Type)
48 #define PyComplex_CheckExact(op) (Py_TYPE(op) == &PyComplex_Type)
/external/python/cpython3/Objects/
Dcomplexobject.c238 (void)PyObject_INIT(op, &PyComplex_Type); in PyComplex_FromCComplex()
928 type == &PyComplex_Type) { in complex_new_impl()
1085 PyTypeObject PyComplex_Type = { variable
Dfloatobject.c761 return PyComplex_Type.tp_as_number->nb_power(v, w, z); in float_pow()
Dobject.c1779 INIT_TYPE(&PyComplex_Type, "complex"); in _PyTypes_Init()
/external/python/cpython2/Objects/
Dcomplexobject.c242 (void)PyObject_INIT(op, &PyComplex_Type); in PyComplex_FromCComplex()
1153 type == &PyComplex_Type) { in complex_new()
1314 PyTypeObject PyComplex_Type = { variable
Dobject.c2136 if (PyType_Ready(&PyComplex_Type) < 0) in _Py_ReadyTypes()
/external/python/cpython2/PC/os2vacpp/
Dpython.def13 PyComplex_Type
/external/python/cpython3/Doc/c-api/
Dcomplex.rst88 .. c:var:: PyTypeObject PyComplex_Type
/external/python/cpython2/Doc/c-api/
Dcomplex.rst88 .. c:var:: PyTypeObject PyComplex_Type
/external/python/cpython3/PC/
Dpython3.def81 PyComplex_Type=python39.PyComplex_Type DATA
/external/tensorflow/tensorflow/compiler/xla/python/
Djax_jit.cc433 (*p)[reinterpret_cast<PyObject*>(&PyComplex_Type)] = complex_handler; in ArgSignatureOfValue()
758 (*p)[reinterpret_cast<PyObject*>(&PyComplex_Type)] = in DevicePut()
/external/python/cpython2/PC/os2emx/
Dpython27.def253 "PyComplex_Type"
/external/python/cpython3/Python/
Dbltinmodule.c2816 SETBUILTIN("complex", &PyComplex_Type); in _PyBuiltin_Init()
/external/python/cpython3/Tools/c-analyzer/
DTODO693 Objects/complexobject.c:PyComplex_Type PyTypeObject PyComplex_Type
Dknown.tsv814 Objects/complexobject.c - PyComplex_Type variable PyTypeObject PyComplex_Type
/external/python/cpython2/Python/
Dbltinmodule.c2729 SETBUILTIN("complex", &PyComplex_Type); in _PyBuiltin_Init()