Lines Matching defs:self

4501                    meth is unbound method and obj is self.
4503 meth | self | arg1 | ... | argN
4506 PUSH(obj); // self
4547 PyObject *self = TOP();
4548 PyTypeObject *self_cls = Py_TYPE(self);
4554 PyDictObject *dict = *(PyDictObject**)_PyObject_ManagedDictPointer(self);
4565 PUSH(self);
4574 PyObject *self = TOP();
4575 PyTypeObject *self_cls = Py_TYPE(self);
4582 PyDictObject **dictptr = (PyDictObject**)(((char *)self)+dictoffset);
4597 PUSH(self);
4604 PyObject *self = TOP();
4605 PyTypeObject *self_cls = Py_TYPE(self);
4616 PUSH(self);
4675 ... | method | self | arg1 | ... | argN
4681 `self` and `method` will be POPed by call_function.
4683 make it accept the `self` as a first argument.
4692 PyObject *self = ((PyMethodObject *)function)->im_self;
4694 Py_INCREF(self);
4695 PEEK(oparg+1) = self;
4709 PyObject *self = ((PyMethodObject *)function)->im_self;
4711 Py_INCREF(self);
4712 PEEK(oparg + 1) = self;
5054 /* res = func(self, args, nargs) */
5092 /* res = func(self, args, nargs, kwnames) */
5216 PyObject *self = SECOND();
5217 DEOPT_IF(!Py_IS_TYPE(self, callable->d_common.d_type), PRECALL);
5226 PyObject *res = _PyCFunction_TrampolineCall(cfunc, self, arg);
5229 Py_DECREF(self);
5250 PyObject *self = PEEK(total_args);
5251 DEOPT_IF(!Py_IS_TYPE(self, d_type), PRECALL);
5258 PyObject *res = cfunc(self, stack_pointer, nargs - KWNAMES_LEN(),
5267 Py_DECREF(self);
5287 PyObject *self = TOP();
5288 DEOPT_IF(!Py_IS_TYPE(self, callable->d_common.d_type), PRECALL);
5298 PyObject *res = _PyCFunction_TrampolineCall(cfunc, self, NULL);
5301 Py_DECREF(self);
5322 PyObject *self = PEEK(total_args);
5323 DEOPT_IF(!Py_IS_TYPE(self, callable->d_common.d_type), PRECALL);
5330 PyObject *res = cfunc(self, stack_pointer, nargs);
5336 Py_DECREF(self);
6780 call_exc_trace(Py_tracefunc func, PyObject *self,
6798 err = call_trace(func, self, tstate, f, PyTrace_EXCEPTION, arg);
7301 "self". In any case, the call itself would raise
7304 PyObject *self = args[0];
7305 func = Py_TYPE(func)->tp_descr_get(func, self, (PyObject*)Py_TYPE(self));
7339 "self". In any case, the call itself would raise
7342 PyObject *self = PyTuple_GET_ITEM(callargs, 0);
7343 func = Py_TYPE(func)->tp_descr_get(func, self, (PyObject*)Py_TYPE(self));
7834 _Py_GetDXProfile(PyObject *self, PyObject *args)