Lines Matching refs:AOP
13 #define spam1(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a1) { \ argument
14 return AOP(a1); }
16 #define spam2(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \ argument
19 return AOP(a1,a2); }
21 #define spamoi(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \ argument
24 return AOP(a1,a2); }
26 #define spam2n(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \ argument
29 if(-1 == AOP(a1,a2)) return NULL; \
33 #define spam3n(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \ argument
36 if(-1 == AOP(a1,a2,a3)) return NULL; \
40 #define spami(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a1) { \ argument
42 if(-1 == (r=AOP(a1))) return NULL; \
45 #define spami2(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \ argument
48 if(-1 == (r=AOP(a1,a2))) return NULL; \
51 #define spamn2(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \ argument
54 if(-1 == (r=AOP(a1,a2))) return NULL; \
57 #define spami2b(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \ argument
60 if(-1 == (r=AOP(a1,a2))) return NULL; \