Home | History | Annotate | Download | only in elff

Lines Matching defs:new_chunk

40     ElfAllocatorChunk* new_chunk =

42 assert(new_chunk != NULL);
43 if (new_chunk == NULL) {
47 new_chunk->size = ELF_ALLOC_CHUNK_SIZE;
48 new_chunk->avail = INC_PTR(new_chunk, sizeof(ElfAllocatorChunk));
49 new_chunk->remains = new_chunk->size - sizeof(ElfAllocatorChunk);
50 new_chunk->prev = current_chunk_;
51 current_chunk_ = new_chunk;