Home
last modified time | relevance | path

Searched refs:PyByteArray_Resize (Results 1 – 6 of 6) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dbytearrayobject.h44 PyAPI_FUNC(int) PyByteArray_Resize(PyObject *, Py_ssize_t);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dbytearrayobject.h44 PyAPI_FUNC(int) PyByteArray_Resize(PyObject *, Py_ssize_t);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dbytearrayobject.c224 PyByteArray_Resize(PyObject *self, Py_ssize_t size) in PyByteArray_Resize() function
340 else if (PyByteArray_Resize((PyObject *)self, size) < 0) { in bytearray_iconcat()
392 else if (PyByteArray_Resize((PyObject *)self, size) < 0) in bytearray_irepeat()
537 if (PyByteArray_Resize((PyObject *)self, in bytearray_setslice()
677 if (PyByteArray_Resize((PyObject *)self, in bytearray_ass_subscript()
727 if (PyByteArray_Resize((PyObject *)self, in bytearray_ass_subscript()
764 if (PyByteArray_Resize((PyObject *)self, 0) < 0) in bytearray_init()
845 if (PyByteArray_Resize((PyObject *)self, count)) in bytearray_init()
859 if (PyByteArray_Resize((PyObject *)self, size) < 0) goto fail; in bytearray_init()
902 else if (PyByteArray_Resize((PyObject *)self, Py_SIZE(self)+1) < 0) in bytearray_init()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dbytearrayobject.c224 PyByteArray_Resize(PyObject *self, Py_ssize_t size) in PyByteArray_Resize() function
340 else if (PyByteArray_Resize((PyObject *)self, size) < 0) { in bytearray_iconcat()
392 else if (PyByteArray_Resize((PyObject *)self, size) < 0) in bytearray_irepeat()
537 if (PyByteArray_Resize((PyObject *)self, in bytearray_setslice()
671 if (PyByteArray_Resize((PyObject *)self, in bytearray_ass_subscript()
721 if (PyByteArray_Resize((PyObject *)self, in bytearray_ass_subscript()
758 if (PyByteArray_Resize((PyObject *)self, 0) < 0) in bytearray_init()
839 if (PyByteArray_Resize((PyObject *)self, count)) in bytearray_init()
853 if (PyByteArray_Resize((PyObject *)self, size) < 0) goto fail; in bytearray_init()
896 else if (PyByteArray_Resize((PyObject *)self, Py_SIZE(self)+1) < 0) in bytearray_init()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
Diobase.c520 PyByteArray_Resize(buffer, old_size + PyBytes_GET_SIZE(b)); in iobase_readline()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
Diobase.c532 PyByteArray_Resize(buffer, old_size + PyBytes_GET_SIZE(b)); in iobase_readline()