Lines Matching refs:extras
555 Py_ssize_t res, extras, ncells, nfrees; in frame_sizeof() local
559 extras = f->f_code->co_stacksize + f->f_code->co_nlocals + in frame_sizeof()
562 res = sizeof(PyFrameObject) + (extras-1) * sizeof(PyObject *); in frame_sizeof()
674 Py_ssize_t extras, ncells, nfrees; in PyFrame_New() local
677 extras = code->co_stacksize + code->co_nlocals + ncells + in PyFrame_New()
681 extras); in PyFrame_New()
692 if (Py_SIZE(f) < extras) { in PyFrame_New()
693 f = PyObject_GC_Resize(PyFrameObject, f, extras); in PyFrame_New()
703 extras = code->co_nlocals + ncells + nfrees; in PyFrame_New()
704 f->f_valuestack = f->f_localsplus + extras; in PyFrame_New()
705 for (i=0; i<extras; i++) in PyFrame_New()