H A D | IntegralAP.h | 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 [all …]
|