Home
last modified time | relevance | path

Searched refs:PyObject_Size (Results 1 – 25 of 33) sorted by relevance

12

/external/python/cpython2/Include/
Dabstract.h421 PyAPI_FUNC(Py_ssize_t) PyObject_Size(PyObject *o);
434 #define PyObject_Length PyObject_Size
/external/python/cpython2/Modules/_io/
Diobase.c582 if (PyObject_Size(line) <= 0) { in iobase_iternext()
644 line_length = PyObject_Size(line); in iobase_readlines()
/external/python/cpython3/Modules/_io/
Diobase.c651 if (PyObject_Size(line) <= 0) { in iobase_iternext()
718 line_length = PyObject_Size(line); in _io__IOBase_readlines_impl()
/external/python/cpython3/Include/
Dabstract.h413 PyAPI_FUNC(Py_ssize_t) PyObject_Size(PyObject *o);
419 #define PyObject_Length PyObject_Size
/external/python/cpython3/Modules/
Dparsermodule.c802 Py_ssize_t len = PyObject_Size(tuple); in build_node_children()
844 Py_ssize_t len = PyObject_Size(elem); in build_node_children()
/external/python/cpython2/Objects/
Dabstract.c61 PyObject_Size(PyObject *o) in PyObject_Size() function
81 return PyObject_Size(o); in PyObject_Length()
83 #define PyObject_Length PyObject_Size
100 rv = PyObject_Size(o); in _PyObject_LengthHint()
Ddescrobject.c703 return PyObject_Size(pp->dict); in proxy_len()
Ddictobject.c2957 len_self = PyObject_Size(self); in dictview_richcompare()
2960 len_other = PyObject_Size(other); in dictview_richcompare()
Dobject.c2340 Py_ssize_t (*_Py_abstract_hack)(PyObject *) = PyObject_Size;
/external/python/cpython2/Python/
Dpeephole.c166 size = PyObject_Size(newconst); in fold_binops_on_constants()
Dmarshal.c404 n = PyObject_Size(v); in w_object()
/external/python/cpython3/Objects/
Dabstract.c46 PyObject_Size(PyObject *o) in PyObject_Size() function
69 return PyObject_Size(o); in PyObject_Length()
71 #define PyObject_Length PyObject_Size
Ddictobject.c3812 len_self = PyObject_Size(self); in dictview_richcompare()
3815 len_other = PyObject_Size(other); in dictview_richcompare()
4027 Py_ssize_t len_other = PyObject_Size(other); in dictviews_isdisjoint()
Ddescrobject.c816 return PyObject_Size(pp->mapping); in mappingproxy_len()
Dobject.c2036 Py_ssize_t (*_Py_abstract_hack)(PyObject *) = PyObject_Size;
/external/python/cpython2/Modules/
Dselectmodule.c1509 if ((args != NULL && PyObject_Size(args)) || in kqueue_queue_new()
1510 (kwds != NULL && PyObject_Size(kwds))) { in kqueue_queue_new()
Dparsermodule.c739 Py_ssize_t len = PyObject_Size(tuple); in build_node_children()
775 Py_ssize_t len = PyObject_Size(elem); in build_node_children()
/external/python/cpython3/PC/
Dpython3.def493 PyObject_Size=python37.PyObject_Size
/external/python/cpython2/PC/os2emx/
Dpython27.def123 "PyObject_Size"
/external/python/cpython3/Misc/NEWS.d/
D3.6.2rc1.rst525 errors caused by not checking results of PyObject_Size(), PySequence_Size(),
D3.5.4rc1.rst592 errors caused by not checking results of PyObject_Size(), PySequence_Size(),
/external/python/cpython3/Doc/c-api/
Dobject.rst391 .. c:function:: Py_ssize_t PyObject_Size(PyObject *o)
/external/python/cpython2/Doc/c-api/
Dobject.rst359 Py_ssize_t PyObject_Size(PyObject *o)
/external/python/cpython3/Python/
Dmarshal.c524 n = PyObject_Size(v); in w_complex_object()
/external/python/cpython3/Doc/data/
Drefcounts.dat1764 PyObject_Size:Py_ssize_t:::
1765 PyObject_Size:PyObject*:o:0:

12