/external/python/cpython3/Objects/clinic/ |
bytearrayobject.c.h | 15 bytearray_clear_impl(PyByteArrayObject *self); 18 bytearray_clear(PyByteArrayObject *self, PyObject *Py_UNUSED(ignored)) 33 bytearray_copy_impl(PyByteArrayObject *self); 36 bytearray_copy(PyByteArrayObject *self, PyObject *Py_UNUSED(ignored)) 57 bytearray_translate_impl(PyByteArrayObject *self, PyObject *table, 61 bytearray_translate(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) 139 bytearray_replace_impl(PyByteArrayObject *self, Py_buffer *old, 143 bytearray_replace(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs) 187 bytearray_split_impl(PyByteArrayObject *self, PyObject *sep, 191 bytearray_split(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/ |
bytearrayobject.h | 11 /* Type PyByteArrayObject represents a mutable array of bytes.
28 } PyByteArrayObject;
49 Py_SIZE(self) ? ((PyByteArrayObject *)(self))->ob_bytes : _PyByteArray_empty_string)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/ |
bytearrayobject.h | 11 /* Type PyByteArrayObject represents a mutable array of bytes.
28 } PyByteArrayObject;
49 Py_SIZE(self) ? ((PyByteArrayObject *)(self))->ob_bytes : _PyByteArray_empty_string)
|
/external/python/cpython2/Include/ |
bytearrayobject.h | 11 /* Type PyByteArrayObject represents a mutable array of bytes. 28 } PyByteArrayObject; 49 Py_SIZE(self) ? ((PyByteArrayObject *)(self))->ob_bytes : _PyByteArray_empty_string)
|
/external/python/cpython3/Include/ |
bytearrayobject.h | 11 /* Type PyByteArrayObject represents a mutable array of bytes. 30 } PyByteArrayObject; 53 Py_SIZE(self) ? ((PyByteArrayObject *)(self))->ob_start : _PyByteArray_empty_string)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
bytearrayobject.c | 63 bytearray_buffer_getreadbuf(PyByteArrayObject *self, Py_ssize_t index, const void **ptr)
75 bytearray_buffer_getwritebuf(PyByteArrayObject *self, Py_ssize_t index, const void **ptr)
87 bytearray_buffer_getsegcount(PyByteArrayObject *self, Py_ssize_t *lenp)
95 bytearray_buffer_getcharbuf(PyByteArrayObject *self, Py_ssize_t index, const char **ptr)
107 bytearray_getbuffer(PyByteArrayObject *obj, Py_buffer *view, int flags)
124 bytearray_releasebuffer(PyByteArrayObject *obj, Py_buffer *view)
148 _canresize(PyByteArrayObject *self)
170 PyByteArrayObject *new;
179 new = PyObject_New(PyByteArrayObject, &PyByteArray_Type);
227 Py_ssize_t alloc = ((PyByteArrayObject *)self)->ob_alloc; [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
bytearrayobject.c | 63 bytearray_buffer_getreadbuf(PyByteArrayObject *self, Py_ssize_t index, const void **ptr)
75 bytearray_buffer_getwritebuf(PyByteArrayObject *self, Py_ssize_t index, const void **ptr)
87 bytearray_buffer_getsegcount(PyByteArrayObject *self, Py_ssize_t *lenp)
95 bytearray_buffer_getcharbuf(PyByteArrayObject *self, Py_ssize_t index, const char **ptr)
107 bytearray_getbuffer(PyByteArrayObject *obj, Py_buffer *view, int flags)
124 bytearray_releasebuffer(PyByteArrayObject *obj, Py_buffer *view)
148 _canresize(PyByteArrayObject *self)
170 PyByteArrayObject *new;
179 new = PyObject_New(PyByteArrayObject, &PyByteArray_Type);
227 Py_ssize_t alloc = ((PyByteArrayObject *)self)->ob_alloc; [all...] |
/external/python/cpython2/Objects/ |
bytearrayobject.c | 63 bytearray_buffer_getreadbuf(PyByteArrayObject *self, Py_ssize_t index, const void **ptr) 75 bytearray_buffer_getwritebuf(PyByteArrayObject *self, Py_ssize_t index, const void **ptr) 87 bytearray_buffer_getsegcount(PyByteArrayObject *self, Py_ssize_t *lenp) 95 bytearray_buffer_getcharbuf(PyByteArrayObject *self, Py_ssize_t index, const char **ptr) 107 bytearray_getbuffer(PyByteArrayObject *obj, Py_buffer *view, int flags) 124 bytearray_releasebuffer(PyByteArrayObject *obj, Py_buffer *view) 148 _canresize(PyByteArrayObject *self) 190 PyByteArrayObject *new; 199 new = PyObject_New(PyByteArrayObject, &PyByteArray_Type); 247 Py_ssize_t alloc = ((PyByteArrayObject *)self)->ob_alloc [all...] |
/external/python/cpython3/Objects/ |
bytearrayobject.c | 13 class bytearray "PyByteArrayObject *" "&PyByteArray_Type" 63 bytearray_getbuffer(PyByteArrayObject *obj, Py_buffer *view, int flags) 79 bytearray_releasebuffer(PyByteArrayObject *obj, Py_buffer *view) 85 _canresize(PyByteArrayObject *self) 129 PyByteArrayObject *new; 143 new = PyObject_New(PyByteArrayObject, &PyByteArray_Type); 192 PyByteArrayObject *obj = ((PyByteArrayObject *)self); 271 PyByteArrayObject *result = NULL; 287 result = (PyByteArrayObject *) \ [all...] |
/external/python/cpython3/Lib/test/ |
clinic.test | 220 a: PyByteArrayObject 234 test_PyByteArrayObject_converter_impl(PyObject *module, PyByteArrayObject *a); 240 PyByteArrayObject *a; 252 test_PyByteArrayObject_converter_impl(PyObject *module, PyByteArrayObject *a) [all...] |
/external/python/cpython2/Modules/ |
_testcapimodule.c | [all...] |
/external/python/cpython3/Modules/ |
_testcapimodule.c | [all...] |