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