Lines Matching defs:previous
728 allocate_chunk(int size_in_bytes, _PyStackChunk* previous)
735 res->previous = previous;
1028 previous value. It is more likely with daemon threads, but it can
1100 _PyStackChunk *prev = chunk->previous;
1281 f = f->previous;
1411 frame = frame->previous;
2194 // When new is the "root" chunk (i.e. new->previous == NULL), we can keep
2197 PyObject **res = &new->data[new->previous == NULL];
2224 _PyStackChunk *previous = chunk->previous;
2226 assert(previous);
2227 tstate->datastack_top = &previous->data[previous->top];
2228 tstate->datastack_chunk = previous;
2230 tstate->datastack_limit = (PyObject **)(((char *)previous) + previous->size);