Searched refs:localsplus (Results 1 - 6 of 6) sorted by relevance
/third_party/python/Include/internal/ |
H A D | pycore_frame.h | 62 int stacktop; /* Offset of TOS from localsplus */ 66 PyObject *localsplus[1]; member 73 return f->localsplus + f->f_code->co_nlocalsplus; in _PyFrame_Stackbase() 78 assert(f->localsplus[f->stacktop-1] != NULL); in _PyFrame_StackPeek() 79 return f->localsplus[f->stacktop-1]; in _PyFrame_StackPeek() 85 return f->localsplus[f->stacktop]; in _PyFrame_StackPop() 89 f->localsplus[f->stacktop] = value; in _PyFrame_StackPush() 124 return frame->localsplus; in _PyFrame_GetLocalsArray() 130 return frame->localsplus+frame->stacktop; in _PyFrame_GetStackPointer() 136 frame->stacktop = (int)(stack_pointer - frame->localsplus); in _PyFrame_SetStackPointer() [all...] |
/third_party/python/Python/ |
H A D | frame.c | 70 Py_ssize_t size = ((char*)&src->localsplus[src->stacktop]) - (char *)src; in _PyFrame_Copy() 83 Py_ssize_t size = ((char*)&frame->localsplus[frame->stacktop]) - (char *)frame; in take_ownership() 141 Py_XDECREF(frame->localsplus[i]); in _PyFrame_Clear()
|
H A D | ceval.c | 1474 #define GETLOCAL(i) (frame->localsplus[i]) 2260 new_frame->localsplus[0] = container; 2261 new_frame->localsplus[1] = sub; 2263 new_frame->localsplus[i] = NULL; 3215 frame->localsplus[offset + i] = o; 4861 new_frame->localsplus[i] = stack_pointer[i]; 4864 new_frame->localsplus[i] = NULL; 4897 new_frame->localsplus[i] = stack_pointer[i]; 4903 new_frame->localsplus[i] = def; 4906 new_frame->localsplus[ 5908 missing_arguments(PyThreadState *tstate, PyCodeObject *co, Py_ssize_t missing, Py_ssize_t defcount, PyObject **localsplus, PyObject *qualname) global() argument 5947 too_many_positional(PyThreadState *tstate, PyCodeObject *co, Py_ssize_t given, PyObject *defaults, PyObject **localsplus, PyObject *qualname) global() argument 6137 initialize_locals(PyThreadState *tstate, PyFunctionObject *func, PyObject **localsplus, PyObject *const *args, Py_ssize_t argcount, PyObject *kwnames) global() argument [all...] |
/third_party/python/Objects/ |
H A D | frameobject.c | 943 res = offsetof(PyFrameObject, _f_frame_data) + offsetof(_PyInterpreterFrame, localsplus); in frame_sizeof() 974 offsetof(_PyInterpreterFrame, localsplus), 1015 frame->localsplus[i] = NULL; in init_frame() 1126 frame->localsplus[offset + i] = o; in _PyFrame_FastToLocalsWithError()
|
H A D | genobject.c | 813 res = offsetof(PyGenObject, gi_iframe) + offsetof(_PyInterpreterFrame, localsplus); in gen_sizeof() 842 offsetof(_PyInterpreterFrame, localsplus), /* tp_basicsize */ 1189 offsetof(_PyInterpreterFrame, localsplus), /* tp_basicsize */ 1580 offsetof(_PyInterpreterFrame, localsplus), /* tp_basicsize */
|
/third_party/python/Tools/gdb/ |
H A D | libpython.py | 1041 localsplus = self._gdbval["localsplus"].cast(obj_ptr_ptr) 1044 pyop_value = PyObjectPtr.from_pyobject_ptr(localsplus[i])
|
Completed in 16 milliseconds