Lines Matching defs:getRHSConstant
226 static PyAffineAddExpr getRHSConstant(PyAffineExpr lhs, intptr_t rhs) {
255 static PyAffineMulExpr getRHSConstant(PyAffineExpr lhs, intptr_t rhs) {
284 static PyAffineModExpr getRHSConstant(PyAffineExpr lhs, intptr_t rhs) {
313 static PyAffineFloorDivExpr getRHSConstant(PyAffineExpr lhs, intptr_t rhs) {
342 static PyAffineCeilDivExpr getRHSConstant(PyAffineExpr lhs, intptr_t rhs) {
520 .def("__add__", &PyAffineAddExpr::getRHSConstant)
521 .def("__radd__", &PyAffineAddExpr::getRHSConstant)
523 .def("__mul__", &PyAffineMulExpr::getRHSConstant)
524 .def("__rmul__", &PyAffineMulExpr::getRHSConstant)
526 .def("__mod__", &PyAffineModExpr::getRHSConstant)
589 .def_static("get_add", &PyAffineAddExpr::getRHSConstant,
598 .def_static("get_mul", &PyAffineMulExpr::getRHSConstant,
607 .def_static("get_mod", &PyAffineModExpr::getRHSConstant,
616 .def_static("get_floor_div", &PyAffineFloorDivExpr::getRHSConstant,
625 .def_static("get_ceil_div", &PyAffineCeilDivExpr::getRHSConstant,