Home
last modified time | relevance | path

Searched refs:PyByteArrayObject (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython2/Objects/
Dbytearrayobject.c63 bytearray_buffer_getreadbuf(PyByteArrayObject *self, Py_ssize_t index, const void **ptr) in bytearray_buffer_getreadbuf()
75 bytearray_buffer_getwritebuf(PyByteArrayObject *self, Py_ssize_t index, const void **ptr) in bytearray_buffer_getwritebuf()
87 bytearray_buffer_getsegcount(PyByteArrayObject *self, Py_ssize_t *lenp) in bytearray_buffer_getsegcount()
95 bytearray_buffer_getcharbuf(PyByteArrayObject *self, Py_ssize_t index, const char **ptr) in bytearray_buffer_getcharbuf()
107 bytearray_getbuffer(PyByteArrayObject *obj, Py_buffer *view, int flags) in bytearray_getbuffer()
124 bytearray_releasebuffer(PyByteArrayObject *obj, Py_buffer *view) in bytearray_releasebuffer()
148 _canresize(PyByteArrayObject *self) in _canresize()
170 PyByteArrayObject *new; in PyByteArray_FromStringAndSize()
179 new = PyObject_New(PyByteArrayObject, &PyByteArray_Type); in PyByteArray_FromStringAndSize()
227 Py_ssize_t alloc = ((PyByteArrayObject *)self)->ob_alloc; in PyByteArray_Resize()
[all …]
/external/python/cpython2/Include/
Dbytearrayobject.h28 } PyByteArrayObject; typedef
49 Py_SIZE(self) ? ((PyByteArrayObject *)(self))->ob_bytes : _PyByteArray_empty_string)
/external/python/cpython2/Doc/c-api/
Dbytearray.rst13 .. c:type:: PyByteArrayObject
/external/python/cpython2/Modules/
D_testcapimodule.c1509 PyByteArrayObject *buffer = NULL; in getargs_es_hash()
1533 PyByteArrayObject *buffer = NULL; in getargs_et_hash()