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

  /external/qemu/elff/
elf_alloc.h 42 typedef struct ElfAllocatorChunk {
50 ElfAllocatorChunk* prev;
60 } ElfAllocatorChunk;
101 ElfAllocatorChunk* current_chunk_;
elf_alloc.cc 26 ElfAllocatorChunk* chunk_to_free = current_chunk_;
28 ElfAllocatorChunk* next_chunk = chunk_to_free->prev;
40 ElfAllocatorChunk* new_chunk =
41 reinterpret_cast<ElfAllocatorChunk*>(malloc(ELF_ALLOC_CHUNK_SIZE));
48 new_chunk->avail = INC_PTR(new_chunk, sizeof(ElfAllocatorChunk));
49 new_chunk->remains = new_chunk->size - sizeof(ElfAllocatorChunk);
  /ndk/sources/host-tools/ndk-stack/elff/
elf_alloc.h 42 typedef struct ElfAllocatorChunk {
50 ElfAllocatorChunk* prev;
60 } ElfAllocatorChunk;
101 ElfAllocatorChunk* current_chunk_;
elf_alloc.cc 26 ElfAllocatorChunk* chunk_to_free = current_chunk_;
28 ElfAllocatorChunk* next_chunk = chunk_to_free->prev;
40 ElfAllocatorChunk* new_chunk =
41 reinterpret_cast<ElfAllocatorChunk*>(malloc(ELF_ALLOC_CHUNK_SIZE));
48 new_chunk->avail = INC_PTR(new_chunk, sizeof(ElfAllocatorChunk));
49 new_chunk->remains = new_chunk->size - sizeof(ElfAllocatorChunk);

Completed in 620 milliseconds