Home
last modified time | relevance | path

Searched refs:co_stacksize (Results 1 – 13 of 13) sorted by relevance

/third_party/python/Objects/clinic/
Dcodeobject.c.h158 int co_nlocals, int co_stacksize, int co_flags,
177 int co_stacksize = self->co_stacksize; in code_replace() local
234 co_stacksize = _PyLong_AsInt(args[4]); in code_replace()
235 if (co_stacksize == -1 && PyErr_Occurred()) { in code_replace()
352 …self, co_argcount, co_posonlyargcount, co_kwonlyargcount, co_nlocals, co_stacksize, co_flags, co_f… in code_replace()
/third_party/python/Objects/
Dcodeobject.c241 co->co_stacksize = stacksize; in PyCode_NewWithPosOnlyArgs()
388 {"co_stacksize",T_INT, OFF(co_stacksize), READONLY},
725 int co_nlocals, int co_stacksize, int co_flags, in code_replace_impl() argument
744 CHECK_INT_ARG(co_stacksize); in code_replace_impl()
753 co_stacksize, co_flags) < 0) { in code_replace_impl()
759 co_stacksize, co_flags, (PyObject*)co_code, co_consts, co_names, in code_replace_impl()
Dframeobject.c712 extras = code->co_stacksize + code->co_nlocals + ncells + nfrees; in frame_sizeof()
790 Py_ssize_t extras = code->co_stacksize + code->co_nlocals + ncells + nfrees; in frame_alloc()
/third_party/node/tools/inspector_protocol/jinja2/
Ddebug.py272 code = CodeType(0, code.co_nlocals, code.co_stacksize,
279 code.co_nlocals, code.co_stacksize,
/third_party/python/Include/cpython/
Dcode.h24 int co_stacksize; /* #entries needed for evaluation stack */ member
/third_party/python/Lib/test/
Dtest_code.py220 co.co_stacksize,
Dtest_compile.py987 self.assertLessEqual(code.co_stacksize, max_size)
1053 sizes = [compile_snippet(i).co_stacksize for i in range(2, 5)]
Dtest_sys.py1294 extras = x.f_code.co_stacksize + x.f_code.co_nlocals +\
/third_party/python/Lib/
Ddis.py163 lines.append("Stack size: %s" % co.co_stacksize)
/third_party/python/Python/
Dceval.c1409 assert(STACK_LEVEL() <= co->co_stacksize); }
1416 assert(STACK_LEVEL() <= co->co_stacksize); \
1422 assert(STACK_LEVEL() <= co->co_stacksize); \
1742 assert(STACK_LEVEL() <= co->co_stacksize); /* else overflow */ in _PyEval_EvalFrameDefault()
Dmarshal.c516 w_long(co->co_stacksize, p); in w_complex_object()
/third_party/python/Doc/library/
Dinspect.rst195 | | co_stacksize | virtual machine stack |
/third_party/python/Doc/reference/
Ddatamodel.rst969 single: co_stacksize (code object attribute)
992 see the source code of the interpreter); :attr:`co_stacksize` is the