Home
last modified time | relevance | path

Searched refs:MPDFUNC (Results 1 – 1 of 1) sorted by relevance

/external/python/cpython3/Modules/_decimal/
D_decimal.c3772 #define Dec_UnaryNumberMethod(MPDFUNC) \ argument
3774 nm_##MPDFUNC(PyObject *self) \
3785 MPDFUNC(MPD(result), MPD(self), CTX(context), &status); \
3795 #define Dec_BinaryNumberMethod(MPDFUNC) \ argument
3797 nm_##MPDFUNC(PyObject *self, PyObject *other) \
3813 MPDFUNC(MPD(result), MPD(a), MPD(b), CTX(context), &status); \
3825 #define Dec_BoolFunc(MPDFUNC) \ argument
3827 dec_##MPDFUNC(PyObject *self, PyObject *dummy UNUSED) \
3829 return MPDFUNC(MPD(self)) ? incr_true() : incr_false(); \
3833 #define Dec_BoolFuncVA(MPDFUNC) \ argument
[all …]