Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/clinic/
Dbytearrayobject.c.h15 bytearray_clear_impl(PyByteArrayObject *self);
18 bytearray_clear(PyByteArrayObject *self, PyObject *Py_UNUSED(ignored)) in bytearray_clear()
33 bytearray_copy_impl(PyByteArrayObject *self);
36 bytearray_copy(PyByteArrayObject *self, PyObject *Py_UNUSED(ignored)) in bytearray_copy()
57 bytearray_translate_impl(PyByteArrayObject *self, PyObject *table,
61 bytearray_translate(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwn… in bytearray_translate()
139 bytearray_replace_impl(PyByteArrayObject *self, Py_buffer *old,
143 bytearray_replace(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs) in bytearray_replace()
187 bytearray_split_impl(PyByteArrayObject *self, PyObject *sep,
191 bytearray_split(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) in bytearray_split()
[all …]
/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()
190 PyByteArrayObject *new; in PyByteArray_FromStringAndSize()
199 new = PyObject_New(PyByteArrayObject, &PyByteArray_Type); in PyByteArray_FromStringAndSize()
247 Py_ssize_t alloc = ((PyByteArrayObject *)self)->ob_alloc; in PyByteArray_Resize()
[all …]
/external/python/cpython3/Objects/
Dbytearrayobject.c63 bytearray_getbuffer(PyByteArrayObject *obj, Py_buffer *view, int flags) in bytearray_getbuffer()
79 bytearray_releasebuffer(PyByteArrayObject *obj, Py_buffer *view) in bytearray_releasebuffer()
85 _canresize(PyByteArrayObject *self) in _canresize()
129 PyByteArrayObject *new; in PyByteArray_FromStringAndSize()
143 new = PyObject_New(PyByteArrayObject, &PyByteArray_Type); in PyByteArray_FromStringAndSize()
192 PyByteArrayObject *obj = ((PyByteArrayObject *)self); in PyByteArray_Resize()
271 PyByteArrayObject *result = NULL; in PyByteArray_Concat()
287 result = (PyByteArrayObject *) \ in PyByteArray_Concat()
305 bytearray_length(PyByteArrayObject *self) in bytearray_length()
311 bytearray_iconcat(PyByteArrayObject *self, PyObject *other) in bytearray_iconcat()
[all …]
/external/python/cpython2/Include/
Dbytearrayobject.h28 } PyByteArrayObject; typedef
49 Py_SIZE(self) ? ((PyByteArrayObject *)(self))->ob_bytes : _PyByteArray_empty_string)
/external/python/cpython3/Include/
Dbytearrayobject.h30 } PyByteArrayObject; typedef
53 Py_SIZE(self) ? ((PyByteArrayObject *)(self))->ob_start : _PyByteArray_empty_string)
/external/python/cpython2/Doc/c-api/
Dbytearray.rst13 .. c:type:: PyByteArrayObject
/external/python/cpython3/Doc/c-api/
Dbytearray.rst11 .. c:type:: PyByteArrayObject
Darg.rst136 ``Y`` (:class:`bytearray`) [PyByteArrayObject \*]
/external/python/cpython3/Lib/test/
Dclinic.test220 a: PyByteArrayObject
234 test_PyByteArrayObject_converter_impl(PyObject *module, PyByteArrayObject *a);
240 PyByteArrayObject *a;
252 test_PyByteArrayObject_converter_impl(PyObject *module, PyByteArrayObject *a)
/external/python/cpython2/Modules/
D_testcapimodule.c1519 PyByteArrayObject *buffer = NULL; in getargs_es_hash()
1543 PyByteArrayObject *buffer = NULL; in getargs_et_hash()
/external/python/cpython3/Modules/
D_testcapimodule.c1490 PyByteArrayObject *buffer = NULL; in getargs_es_hash()
1513 PyByteArrayObject *buffer = NULL; in getargs_et_hash()
/external/python/cpython3/Doc/howto/
Dclinic.rst857 ``'Y'`` ``PyByteArrayObject``