Home
last modified time | relevance | path

Searched refs:PyByteArray_GET_SIZE (Results 1 – 8 of 8) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dbytearrayobject.c211 return PyByteArray_GET_SIZE(self); in PyByteArray_Size()
429 i += PyByteArray_GET_SIZE(self); in bytearray_subscript()
440 PyByteArray_GET_SIZE(self), in bytearray_subscript()
600 i += PyByteArray_GET_SIZE(self); in bytearray_ass_subscript()
624 PyByteArray_GET_SIZE(self), in bytearray_ass_subscript()
714 if (cur + step >= (size_t)PyByteArray_GET_SIZE(self)) in bytearray_ass_subscript()
715 lim = PyByteArray_GET_SIZE(self) - cur - 1; in bytearray_ass_subscript()
722 if (cur < (size_t)PyByteArray_GET_SIZE(self)) { in bytearray_ass_subscript()
725 PyByteArray_GET_SIZE(self) - cur); in bytearray_ass_subscript()
728 PyByteArray_GET_SIZE(self) - slicelen) < 0) in bytearray_ass_subscript()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dbytearrayobject.c211 return PyByteArray_GET_SIZE(self); in PyByteArray_Size()
429 i += PyByteArray_GET_SIZE(self); in bytearray_subscript()
440 PyByteArray_GET_SIZE(self), in bytearray_subscript()
600 i += PyByteArray_GET_SIZE(self); in bytearray_ass_subscript()
624 PyByteArray_GET_SIZE(self), in bytearray_ass_subscript()
708 if (cur + step >= (size_t)PyByteArray_GET_SIZE(self)) in bytearray_ass_subscript()
709 lim = PyByteArray_GET_SIZE(self) - cur - 1; in bytearray_ass_subscript()
716 if (cur < (size_t)PyByteArray_GET_SIZE(self)) { in bytearray_ass_subscript()
719 PyByteArray_GET_SIZE(self) - cur); in bytearray_ass_subscript()
722 PyByteArray_GET_SIZE(self) - slicelen) < 0) in bytearray_ass_subscript()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dbytearrayobject.h50 #define PyByteArray_GET_SIZE(self) (assert(PyByteArray_Check(self)),Py_SIZE(self)) macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dbytearrayobject.h50 #define PyByteArray_GET_SIZE(self) (assert(PyByteArray_Check(self)),Py_SIZE(self)) macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
Diobase.c519 old_size = PyByteArray_GET_SIZE(buffer); in iobase_readline()
526 if (PyByteArray_AS_STRING(buffer)[PyByteArray_GET_SIZE(buffer) - 1] == '\n') in iobase_readline()
531 PyByteArray_GET_SIZE(buffer)); in iobase_readline()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
Diobase.c531 old_size = PyByteArray_GET_SIZE(buffer); in iobase_readline()
538 if (PyByteArray_AS_STRING(buffer)[PyByteArray_GET_SIZE(buffer) - 1] == '\n') in iobase_readline()
543 PyByteArray_GET_SIZE(buffer)); in iobase_readline()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dbltinmodule.c1517 size = PyByteArray_GET_SIZE(obj); in builtin_ord()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dbltinmodule.c1509 size = PyByteArray_GET_SIZE(obj); in builtin_ord()