Lines Matching defs:A
187 static bool increment(IntegralAP A, IntegralAP *R) { in increment()
192 static bool decrement(IntegralAP A, IntegralAP *R) { in decrement()
197 static bool add(IntegralAP A, IntegralAP B, unsigned OpBits, IntegralAP *R) { in add()
201 static bool sub(IntegralAP A, IntegralAP B, unsigned OpBits, IntegralAP *R) { in sub()
205 static bool mul(IntegralAP A, IntegralAP B, unsigned OpBits, IntegralAP *R) { in mul()
209 static bool rem(IntegralAP A, IntegralAP B, unsigned OpBits, IntegralAP *R) { in rem()
217 static bool div(IntegralAP A, IntegralAP B, unsigned OpBits, IntegralAP *R) { in div()
225 static bool bitAnd(IntegralAP A, IntegralAP B, unsigned OpBits, in bitAnd()
231 static bool bitOr(IntegralAP A, IntegralAP B, unsigned OpBits, in bitOr()
237 static bool bitXor(IntegralAP A, IntegralAP B, unsigned OpBits, in bitXor()
243 static bool neg(const IntegralAP &A, IntegralAP *R) { in neg()
250 static bool comp(IntegralAP A, IntegralAP *R) { in comp()
255 static void shiftLeft(const IntegralAP A, const IntegralAP B, unsigned OpBits, in shiftLeft()
260 static void shiftRight(const IntegralAP A, const IntegralAP B, in shiftRight()
296 static bool CheckAddSubMulUB(const IntegralAP &A, const IntegralAP &B, in CheckAddSubMulUB()