Searched refs:co_stacksize (Results 1 – 13 of 13) sorted by relevance
/third_party/python/Objects/clinic/ |
D | codeobject.c.h | 158 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/ |
D | codeobject.c | 241 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()
|
D | frameobject.c | 712 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/ |
D | debug.py | 272 code = CodeType(0, code.co_nlocals, code.co_stacksize, 279 code.co_nlocals, code.co_stacksize,
|
/third_party/python/Include/cpython/ |
D | code.h | 24 int co_stacksize; /* #entries needed for evaluation stack */ member
|
/third_party/python/Lib/test/ |
D | test_code.py | 220 co.co_stacksize,
|
D | test_compile.py | 987 self.assertLessEqual(code.co_stacksize, max_size) 1053 sizes = [compile_snippet(i).co_stacksize for i in range(2, 5)]
|
D | test_sys.py | 1294 extras = x.f_code.co_stacksize + x.f_code.co_nlocals +\
|
/third_party/python/Lib/ |
D | dis.py | 163 lines.append("Stack size: %s" % co.co_stacksize)
|
/third_party/python/Python/ |
D | ceval.c | 1409 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()
|
D | marshal.c | 516 w_long(co->co_stacksize, p); in w_complex_object()
|
/third_party/python/Doc/library/ |
D | inspect.rst | 195 | | co_stacksize | virtual machine stack |
|
/third_party/python/Doc/reference/ |
D | datamodel.rst | 969 single: co_stacksize (code object attribute) 992 see the source code of the interpreter); :attr:`co_stacksize` is the
|