Home
last modified time | relevance | path

Searched refs:fastlocals (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython3/Objects/
Dframeobject.c502 PyObject **fastlocals, **p; in frame_traverse() local
514 fastlocals = f->f_localsplus; in frame_traverse()
515 for (i = slots; --i >= 0; ++fastlocals) in frame_traverse()
516 Py_VISIT(*fastlocals); in frame_traverse()
529 PyObject **fastlocals, **p, **oldtop; in frame_tp_clear() local
545 fastlocals = f->f_localsplus; in frame_tp_clear()
546 for (i = slots; --i >= 0; ++fastlocals) in frame_tp_clear()
547 Py_CLEAR(*fastlocals); in frame_tp_clear()
Dcall.c262 PyObject **fastlocals; in function_code_fastcall() local
277 fastlocals = f->f_localsplus; in function_code_fastcall()
281 fastlocals[i] = *args++; in function_code_fastcall()
/external/python/cpython2/Objects/
Dframeobject.c529 PyObject **fastlocals, **p; in frame_traverse() local
544 fastlocals = f->f_localsplus; in frame_traverse()
545 for (i = slots; --i >= 0; ++fastlocals) in frame_traverse()
546 Py_VISIT(*fastlocals); in frame_traverse()
559 PyObject **fastlocals, **p, **oldtop; in frame_clear() local
577 fastlocals = f->f_localsplus; in frame_clear()
578 for (i = slots; --i >= 0; ++fastlocals) in frame_clear()
579 Py_CLEAR(*fastlocals); in frame_clear()
/external/python/cpython3/Python/
Dceval.c561 PyObject **fastlocals, **freevars; in _PyEval_EvalFrameDefault() local
792 #define GETLOCAL(i) (fastlocals[i]) in _PyEval_EvalFrameDefault()
880 fastlocals = f->f_localsplus; in _PyEval_EvalFrameDefault()
3567 PyObject **fastlocals) in missing_arguments() argument
3605 PyObject **fastlocals) in too_many_positional() argument
3675 PyObject **fastlocals, **freevars; in _PyEval_EvalCodeWithName() local
3695 fastlocals = f->f_localsplus; in _PyEval_EvalCodeWithName()
3803 too_many_positional(co, argcount, defcount, fastlocals); in _PyEval_EvalCodeWithName()
3817 missing_arguments(co, missing, defcount, fastlocals); in _PyEval_EvalCodeWithName()
3852 missing_arguments(co, missing, -1, fastlocals); in _PyEval_EvalCodeWithName()
[all …]
/external/python/cpython2/Python/
Dceval.c808 register PyObject **fastlocals, **freevars; in PyEval_EvalFrameEx() local
963 #define GETLOCAL(i) (fastlocals[i]) in PyEval_EvalFrameEx()
1023 fastlocals = f->f_localsplus; in PyEval_EvalFrameEx()
3373 register PyObject **fastlocals, **freevars; in PyEval_EvalCodeEx() local
3389 fastlocals = f->f_localsplus; in PyEval_EvalCodeEx()
4436 PyObject **fastlocals, **stack; in fast_function() local
4450 fastlocals = f->f_localsplus; in fast_function()
4455 fastlocals[i] = *stack++; in fast_function()
5177 PyObject **fastlocals = f->f_localsplus; in string_concatenate() local