Lines Matching refs:size
724 /* Minimum size of data stack chunk */
736 res->size = size_in_bytes;
1101 _PyObject_VirtualFree(chunk, chunk->size);
2062 /* Note that this means the size of shareable ints is bounded by
2064 * size of maximum shareable ints on 64-bit.
2178 push_chunk(PyThreadState *tstate, int size)
2181 while (allocate_size < (int)sizeof(PyObject*)*(size + MINIMUM_OVERHEAD)) {
2198 tstate->datastack_top = res + size;
2203 _PyThreadState_BumpFramePointerSlow(PyThreadState *tstate, size_t size)
2205 if (_PyThreadState_HasStackSpace(tstate, size)) {
2207 tstate->datastack_top += size;
2210 if (size > INT_MAX/2) {
2214 return (_PyInterpreterFrame *)push_chunk(tstate, (int)size);
2229 _PyObject_VirtualFree(chunk, chunk->size);
2230 tstate->datastack_limit = (PyObject **)(((char *)previous) + previous->size);