Lines Matching full:chunk_t
49 chunk_t* node = new chunk_t(0, mHeapSize / kMemoryAlign);
72 chunk_t const * const freed = dealloc(offset);
85 chunk_t* free_chunk = 0;
86 chunk_t* cur = mList.head();
111 chunk_t* split = new chunk_t(free_chunk->start, extra);
121 chunk_t* split = new chunk_t(
131 SimpleBestFitAllocator::chunk_t* SimpleBestFitAllocator::dealloc(size_t start)
134 chunk_t* cur = mList.head();
142 chunk_t* freed = cur;
145 chunk_t* const p = cur->prev;
146 chunk_t* const n = cur->next;