Searched refs:vectorcall_method (Results 1 – 1 of 1) sorted by relevance
/aosp_15_r20/external/python/cpython3/Objects/ |
D | typeobject.c | 1670 vectorcall_method(PyObject *name, PyObject *const *args, Py_ssize_t nargs) in vectorcall_method() function 7209 return vectorcall_method(&_Py_ID(DUNDER), stack, 1); \ 7217 return vectorcall_method(&_Py_ID(DUNDER), stack, 2); \ 7303 PyObject *res = vectorcall_method(&_Py_ID(__len__), stack, 1); in slot_sq_length() 7335 PyObject *retval = vectorcall_method(&_Py_ID(__getitem__), stack, 2); in slot_sq_item() 7355 res = vectorcall_method(&_Py_ID(__delitem__), stack, 2); in slot_sq_ass_item() 7359 res = vectorcall_method(&_Py_ID(__setitem__), stack, 3); in slot_sq_ass_item() 7415 res = vectorcall_method(&_Py_ID(__delitem__), stack, 2); in SLOT1() 7419 res = vectorcall_method(&_Py_ID(__setitem__), stack, 3); in SLOT1() 7450 return vectorcall_method(&_Py_ID(__pow__), stack, 3); in SLOT1BINFULL() [all …]
|