Home
last modified time | relevance | path

Searched refs:Py_intptr_t (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython2/Include/
Dpyport.h160 typedef intptr_t Py_intptr_t; typedef
164 typedef int Py_intptr_t; typedef
168 typedef long Py_intptr_t; typedef
172 typedef PY_LONG_LONG Py_intptr_t; typedef
185 typedef Py_intptr_t Py_ssize_t;
/external/python/cpython3/Include/
Dpyport.h98 typedef intptr_t Py_intptr_t; typedef
107 typedef Py_intptr_t Py_ssize_t;
/external/python/pybind11/include/pybind11/
Dnumpy.h37 static_assert(sizeof(::pybind11::ssize_t) == sizeof(Py_intptr_t), "ssize_t != Py_intptr_t");
38 static_assert(std::is_signed<Py_intptr_t>::value, "Py_intptr_t must be signed");
168 Py_intptr_t *ptr;
187 (PyTypeObject *, PyObject *, int, Py_intptr_t const *,
188 Py_intptr_t const *, void *, int, PyObject *);
201 Py_intptr_t *, PyObject **, PyObject *);
597 reinterpret_cast<Py_intptr_t*>(shape->data()),
598 reinterpret_cast<Py_intptr_t*>(strides->data()),
771 reinterpret_cast<Py_intptr_t*>(new_shape->data()),
/external/python/cpython2/PC/
Dmsvcrtmodule.c139 Py_intptr_t handle; in msvcrt_get_osfhandle()
/external/python/cpython2/Modules/
Dposixmodule.c3387 Py_intptr_t spawnval; in posix_spawnv()
3477 Py_intptr_t spawnval; in posix_spawnve()
3635 Py_intptr_t spawnval; in posix_spawnvp()
3716 Py_intptr_t spawnval; in posix_spawnvpe()
5605 fd1 = _open_osfhandle((Py_intptr_t)hChildStdinWrDup, mode); in _PyPopen()
5616 fd1 = _open_osfhandle((Py_intptr_t)hChildStdoutRdDup, mode); in _PyPopen()
5627 fd1 = _open_osfhandle((Py_intptr_t)hChildStdoutRdDup, mode); in _PyPopen()
5638 fd1 = _open_osfhandle((Py_intptr_t)hChildStdinWrDup, mode); in _PyPopen()
5664 fd1 = _open_osfhandle((Py_intptr_t)hChildStdinWrDup, mode); in _PyPopen()
5666 fd2 = _open_osfhandle((Py_intptr_t)hChildStdoutRdDup, mode); in _PyPopen()
[all …]
Dselectmodule.c1388 : CMP((Py_intptr_t)s->e.udata, (Py_intptr_t)o->e.udata) in kqueue_event_richcompare()
Dsocketmodule.c2367 Py_intptr_t fd;
/external/python/cffi/c/
D_cffi_backend.c3843 value = (Py_intptr_t)((CDataObject *)ob)->c_data; in cast_to_integer_or_char()
3958 return new_simple_cdata((char *)(Py_intptr_t)value, ct); in do_cast()