Home | History | Annotate | Download | only in binder

Lines Matching full:chunk_t

140     struct chunk_t {
141 chunk_t(size_t start, size_t size)
147 mutable chunk_t* prev;
148 mutable chunk_t* next;
152 chunk_t* dealloc(size_t start);
158 LinkedList<chunk_t> mList;
277 chunk_t* node = new chunk_t(0, mHeapSize / kMemoryAlign);
303 chunk_t const * const freed = dealloc(offset);
316 chunk_t* free_chunk = 0;
317 chunk_t* cur = mList.head();
346 chunk_t* split = new chunk_t(free_chunk->start, extra);
357 chunk_t* split = new chunk_t(
367 SimpleBestFitAllocator::chunk_t* SimpleBestFitAllocator::dealloc(size_t start)
370 chunk_t* cur = mList.head();
378 chunk_t* freed = cur;
381 chunk_t* const p = cur->prev;
382 chunk_t* const n = cur->next;
433 chunk_t const* cur = mList.head();