Searched refs:vectorcall_method (Results 1 – 1 of 1) sorted by relevance
/external/python/cpython3/Objects/ |
D | typeobject.c | 2586 vectorcall_method(PyObject *name, PyObject *const *args, Py_ssize_t nargs) in vectorcall_method() function 9111 return vectorcall_method(&_Py_ID(DUNDER), stack, 1); \ 9119 return vectorcall_method(&_Py_ID(DUNDER), stack, 2); \ 9205 PyObject *res = vectorcall_method(&_Py_ID(__len__), stack, 1); in slot_sq_length() 9237 PyObject *retval = vectorcall_method(&_Py_ID(__getitem__), stack, 2); in slot_sq_item() 9257 res = vectorcall_method(&_Py_ID(__delitem__), stack, 2); in slot_sq_ass_item() 9261 res = vectorcall_method(&_Py_ID(__setitem__), stack, 3); in slot_sq_ass_item() 9317 res = vectorcall_method(&_Py_ID(__delitem__), stack, 2); in SLOT1() 9321 res = vectorcall_method(&_Py_ID(__setitem__), stack, 3); in SLOT1() 9352 return vectorcall_method(&_Py_ID(__pow__), stack, 3); in SLOT1BINFULL() [all …]
|