Lines Matching defs:func
538 PYTHON_CLASSMETHOD, /* Python classmethod(func) object */
1223 PyFunctionObject *func = (PyFunctionObject *)descriptor;
1224 PyCodeObject *fcode = (PyCodeObject *)func->func_code;
1236 int version = _PyFunction_GetVersionForCurrentState(func);
1343 PyFunctionObject *func = (PyFunctionObject *)descriptor;
1344 PyCodeObject *code = (PyCodeObject *)func->func_code;
1481 specialize_py_call(PyFunctionObject *func, _Py_CODEUNIT *instr, int nargs,
1486 PyCodeObject *code = (PyCodeObject *)func->func_code;
1502 int defcount = func->func_defaults == NULL ? 0 : (int)PyTuple_GET_SIZE(func->func_defaults);
1511 assert(defcount == 0 || func->func_defaults != NULL);
1516 int version = _PyFunction_GetVersionForCurrentState(func);