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