/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/ |
bytearrayobject.h | 27 char *ob_bytes;
member in struct:__anon5322 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 | 27 char *ob_bytes;
member in struct:__anon5629 49 Py_SIZE(self) ? ((PyByteArrayObject *)(self))->ob_bytes : _PyByteArray_empty_string)
|
/prebuilts/gdb/darwin-x86/include/python2.7/ |
bytearrayobject.h | 27 char *ob_bytes; member in struct:__anon53235 49 Py_SIZE(self) ? ((PyByteArrayObject *)(self))->ob_bytes : _PyByteArray_empty_string)
|
/prebuilts/gdb/linux-x86/include/python2.7/ |
bytearrayobject.h | 27 char *ob_bytes; member in struct:__anon53357 49 Py_SIZE(self) ? ((PyByteArrayObject *)(self))->ob_bytes : _PyByteArray_empty_string)
|
/prebuilts/python/darwin-x86/2.7.5/include/python2.7/ |
bytearrayobject.h | 27 char *ob_bytes; member in struct:__anon105077 49 Py_SIZE(self) ? ((PyByteArrayObject *)(self))->ob_bytes : _PyByteArray_empty_string)
|
/prebuilts/python/linux-x86/2.7.5/include/python2.7/ |
bytearrayobject.h | 27 char *ob_bytes; member in struct:__anon105200 49 Py_SIZE(self) ? ((PyByteArrayObject *)(self))->ob_bytes : _PyByteArray_empty_string)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
bytearrayobject.c | 184 new->ob_bytes = NULL;
189 new->ob_bytes = PyMem_Malloc(alloc);
190 if (new->ob_bytes == NULL) {
195 memcpy(new->ob_bytes, bytes, size);
196 new->ob_bytes[size] = '\0'; /* Trailing null byte */
247 ((PyByteArrayObject *)self)->ob_bytes[size] = '\0'; /* Trailing null */
259 sval = PyMem_Realloc(((PyByteArrayObject *)self)->ob_bytes, alloc);
265 ((PyByteArrayObject *)self)->ob_bytes = sval;
268 ((PyByteArrayObject *)self)->ob_bytes[size] = '\0'; /* Trailing null byte */
297 memcpy(result->ob_bytes, va.buf, va.len); [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
bytearrayobject.c | 184 new->ob_bytes = NULL;
189 new->ob_bytes = PyMem_Malloc(alloc);
190 if (new->ob_bytes == NULL) {
195 memcpy(new->ob_bytes, bytes, size);
196 new->ob_bytes[size] = '\0'; /* Trailing null byte */
247 ((PyByteArrayObject *)self)->ob_bytes[size] = '\0'; /* Trailing null */
259 sval = PyMem_Realloc(((PyByteArrayObject *)self)->ob_bytes, alloc);
265 ((PyByteArrayObject *)self)->ob_bytes = sval;
268 ((PyByteArrayObject *)self)->ob_bytes[size] = '\0'; /* Trailing null byte */
297 memcpy(result->ob_bytes, va.buf, va.len); [all...] |