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

  /art/runtime/base/
arena_allocator.cc 454 Arena* new_arena = pool_->AllocArena(std::max(arena_allocator::kArenaDefaultSize, bytes)); local
455 DCHECK(new_arena != nullptr);
456 DCHECK_LE(bytes, new_arena->Size());
457 if (static_cast<size_t>(end_ - ptr_) > new_arena->Size() - bytes) {
461 new_arena->bytes_allocated_ = bytes; // UpdateBytesAllocated() on the new_arena.
462 new_arena->next_ = arena_head_->next_;
463 arena_head_->next_ = new_arena;
466 new_arena->next_ = arena_head_;
467 arena_head_ = new_arena;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
obmalloc.c 501 head of the list in new_arena(), and are pushed on the head of the list in
557 new_arena(void) function
590 * new_arena only gets called when all the pages in the
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
obmalloc.c 468 head of the list in new_arena(), and are pushed on the head of the list in
524 new_arena(void) function
555 * new_arena only gets called when all the pages in the
    [all...]
  /external/python/cpython2/Objects/
obmalloc.c 501 head of the list in new_arena(), and are pushed on the head of the list in
557 new_arena(void) function
590 * new_arena only gets called when all the pages in the
    [all...]

Completed in 313 milliseconds