Home | History | Annotate | Download | only in Interp

Lines Matching refs:Next

21   if (Chunk && Chunk->Next)
22 free(Chunk->Next);
33 if (Chunk && Chunk->Next) {
34 Chunk = Chunk->Next;
36 StackChunk *Next = new (malloc(ChunkSize)) StackChunk(Chunk);
38 Chunk->Next = Next;
39 Chunk = Next;
67 if (Chunk->Next) {
68 free(Chunk->Next);
69 Chunk->Next = nullptr;