HomeSort by relevance Sort by last modified time
    Searched refs:ob_bytes (Results 1 - 12 of 12) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
bytearrayobject.h 27 char *ob_bytes; member in struct:__anon4304
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:__anon4611
49 Py_SIZE(self) ? ((PyByteArrayObject *)(self))->ob_bytes : _PyByteArray_empty_string)
  /external/python/cpython2/Include/
bytearrayobject.h 27 char *ob_bytes; member in struct:__anon32552
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:__anon66443
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:__anon66565
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:__anon958
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:__anon1081
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...]
  /external/python/cpython2/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 */
296 memcpy(result->ob_bytes, va.buf, va.len)
    [all...]
  /external/python/cpython3/Include/
bytearrayobject.h 25 Py_ssize_t ob_alloc; /* How many bytes allocated in ob_bytes */
26 char *ob_bytes; /* Physical backing buffer */ member in struct:__anon33114
27 char *ob_start; /* Logical start inside ob_bytes */
  /external/python/cpython3/Objects/
bytearrayobject.c 127 new->ob_bytes = NULL;
132 new->ob_bytes = PyObject_Malloc(alloc);
133 if (new->ob_bytes == NULL) {
138 memcpy(new->ob_bytes, bytes, size);
139 new->ob_bytes[size] = '\0'; /* Trailing null byte */
143 new->ob_start = new->ob_bytes;
175 size_t logical_offset = (size_t) (obj->ob_start - obj->ob_bytes);
228 PyObject_Free(obj->ob_bytes);
231 sval = PyObject_Realloc(obj->ob_bytes, alloc);
238 obj->ob_bytes = obj->ob_start = sval
    [all...]

Completed in 834 milliseconds