Lines Matching defs:OP
13 #define spam1(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a1) { \ argument
16 #define spam2(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \ argument
21 #define spamoi(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \ argument
26 #define spam2n(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \ argument
33 #define spam3n(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \ argument
40 #define spami(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a1) { \ argument
45 #define spami2(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \ argument
51 #define spamn2(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \ argument
57 #define spami2b(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \ argument
63 #define spamrc(OP,A) static PyObject *OP(PyObject *s, PyObject *a) { \ argument
231 #define spam1(OP,DOC) {#OP, OP, METH_VARARGS, PyDoc_STR(DOC)}, argument
232 #define spam2(OP,ALTOP,DOC) {#OP, op_##OP, METH_VARARGS, PyDoc_STR(DOC)}, \ argument
234 #define spam1o(OP,DOC) {#OP, OP, METH_O, PyDoc_STR(DOC)}, argument
235 #define spam2o(OP,ALTOP,DOC) {#OP, op_##OP, METH_O, PyDoc_STR(DOC)}, \ argument