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

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
pyarena.c 27 * to pass out starts at ab_mem + ab_offset.
29 size_t ab_offset; member in struct:_block
89 b->ab_offset = ROUNDUP((Py_uintptr_t)(b->ab_mem)) -
109 if (b->ab_offset + size > b->ab_size) {
124 assert(b->ab_offset + size <= b->ab_size);
125 p = (void *)(((char *)b->ab_mem) + b->ab_offset);
126 b->ab_offset += size;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
pyarena.c 27 * to pass out starts at ab_mem + ab_offset.
29 size_t ab_offset; member in struct:_block
89 b->ab_offset = ROUNDUP((Py_uintptr_t)(b->ab_mem)) -
109 if (b->ab_offset + size > b->ab_size) {
124 assert(b->ab_offset + size <= b->ab_size);
125 p = (void *)(((char *)b->ab_mem) + b->ab_offset);
126 b->ab_offset += size;
  /external/python/cpython2/Python/
pyarena.c 27 * to pass out starts at ab_mem + ab_offset.
29 size_t ab_offset; member in struct:_block
89 b->ab_offset = ROUNDUP((Py_uintptr_t)(b->ab_mem)) -
109 if (b->ab_offset + size > b->ab_size) {
124 assert(b->ab_offset + size <= b->ab_size);
125 p = (void *)(((char *)b->ab_mem) + b->ab_offset);
126 b->ab_offset += size;
  /external/python/cpython3/Python/
pyarena.c 24 * to pass out starts at ab_mem + ab_offset.
26 size_t ab_offset; member in struct:_block
86 b->ab_offset = (char *)_Py_ALIGN_UP(b->ab_mem, ALIGNMENT) -
106 if (b->ab_offset + size > b->ab_size) {
121 assert(b->ab_offset + size <= b->ab_size);
122 p = (void *)(((char *)b->ab_mem) + b->ab_offset);
123 b->ab_offset += size;

Completed in 235 milliseconds