Searched refs:nextChunk (Results 1 – 2 of 2) sorted by relevance
134 struct Chunk* nextChunk = nullptr; in CombineFree() local137 nextChunk = reinterpret_cast<struct Chunk*>(ram_ + chunk->next); in CombineFree()138 if (((nextChunk != chunk) && !(nextChunk->used)) && (nextChunk != end_)) { in CombineFree()139 if (free_ == nextChunk) { in CombineFree()142 chunk->next = nextChunk->next; in CombineFree()143 …reinterpret_cast<struct Chunk*>(ram_ + nextChunk->next)->prev = reinterpret_cast<uint8_t*>(chunk) … in CombineFree()
42 int nextChunk = 0; member