Lines Matching defs:OpBits
197 static bool add(IntegralAP A, IntegralAP B, unsigned OpBits, IntegralAP *R) {
198 return CheckAddSubMulUB<std::plus>(A, B, OpBits, R);
201 static bool sub(IntegralAP A, IntegralAP B, unsigned OpBits, IntegralAP *R) {
202 return CheckAddSubMulUB<std::minus>(A, B, OpBits, R);
205 static bool mul(IntegralAP A, IntegralAP B, unsigned OpBits, IntegralAP *R) {
206 return CheckAddSubMulUB<std::multiplies>(A, B, OpBits, R);
209 static bool rem(IntegralAP A, IntegralAP B, unsigned OpBits, IntegralAP *R) {
217 static bool div(IntegralAP A, IntegralAP B, unsigned OpBits, IntegralAP *R) {
225 static bool bitAnd(IntegralAP A, IntegralAP B, unsigned OpBits,
231 static bool bitOr(IntegralAP A, IntegralAP B, unsigned OpBits,
237 static bool bitXor(IntegralAP A, IntegralAP B, unsigned OpBits,
255 static void shiftLeft(const IntegralAP A, const IntegralAP B, unsigned OpBits,
261 unsigned OpBits, IntegralAP *R) {