Home
last modified time | relevance | path

Searched refs:PyByteArray_Size (Results 1 – 9 of 9) sorted by relevance

/third_party/python/Doc/c-api/
Dbytearray.rst57 .. c:function:: Py_ssize_t PyByteArray_Size(PyObject *bytearray)
85 Similar to :c:func:`PyByteArray_Size`, but without error checking.
/third_party/python/Include/
Dbytearrayobject.h31 PyAPI_FUNC(Py_ssize_t) PyByteArray_Size(PyObject *);
/third_party/python/PC/
Dpython3dll.c111 EXPORT_FUNC(PyByteArray_Size)
/third_party/python/Doc/data/
Dstable_abi.dat27 function,PyByteArray_Size,3.2,,
Drefcounts.dat104 PyByteArray_Size:Py_ssize_t:::
105 PyByteArray_Size:PyObject*:bytearray:0:
/third_party/python/Objects/
Dbytearrayobject.c152 PyByteArray_Size(PyObject *self) in PyByteArray_Size() function
/third_party/python/Python/
Dgetargs.c859 else if (PyByteArray_Check(arg) && PyByteArray_Size(arg) == 1) in convertsimple()
/third_party/python/Misc/
Dstable_abi.toml416 [function.PyByteArray_Size]
/third_party/python/Modules/
Dsocketmodule.c1638 len = PyByteArray_Size(obj); in idna_converter()