Home
last modified time | relevance | path

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

/third_party/python/Include/
Dabstract.h277 PyAPI_FUNC(Py_ssize_t) PyObject_Size(PyObject *o);
283 #define PyObject_Length PyObject_Size
/third_party/python/Modules/_io/
Diobase.c664 if (PyObject_Size(line) <= 0) { in iobase_iternext()
731 line_length = PyObject_Size(line); in _io__IOBase_readlines_impl()
/third_party/python/Objects/
Dabstract.c53 PyObject_Size(PyObject *o) in PyObject_Size() function
74 return PyObject_Size(o); in PyObject_Length()
76 #define PyObject_Length PyObject_Size
Ddictobject.c4301 len_self = PyObject_Size(self); in dictview_richcompare()
4304 len_other = PyObject_Size(other); in dictview_richcompare()
4462 if (PySet_CheckExact(other) && len_self <= PyObject_Size(other)) { in _PyDictView_Intersect()
4686 Py_ssize_t len_other = PyObject_Size(other); in dictviews_isdisjoint()
Ddescrobject.c1015 return PyObject_Size(pp->mapping); in mappingproxy_len()
Dobject.c2002 Py_ssize_t (*_Py_abstract_hack)(PyObject *) = PyObject_Size;
Dlistobject.c2719 Py_ssize_t iter_len = PyObject_Size(iterable); in list___init___impl()
/third_party/python/Doc/data/
Dstable_abi.dat519 function,PyObject_Size,3.2,
Drefcounts.dat1799 PyObject_Size:Py_ssize_t:::
1800 PyObject_Size:PyObject*:o:0:
/third_party/python/PC/
Dpython3dll.c475 EXPORT_FUNC(PyObject_Size)
/third_party/python/Misc/NEWS.d/
D3.6.2rc1.rst525 errors caused by not checking results of PyObject_Size(), PySequence_Size(),
D3.5.4rc1.rst591 errors caused by not checking results of PyObject_Size(), PySequence_Size(),
D3.7.0a1.rst2903 errors caused by not checking results of PyObject_Size(), PySequence_Size(),
/third_party/python/Doc/c-api/
Dobject.rst304 .. c:function:: Py_ssize_t PyObject_Size(PyObject *o)
Dtypeobj.rst2206 :c:func:`PyObject_Size`, and has the same signature. This slot may be set to
2243 :c:func:`PyObject_Size`, and has the same signature. It is also used for
/third_party/python/Misc/
Dstable_abi.txt1119 function PyObject_Size
/third_party/python/Python/
Dbltinmodule.c1671 res = PyObject_Size(obj); in builtin_len()