Lines Matching refs:OpBits
200 static bool add(Integral A, Integral B, unsigned OpBits, Integral *R) {
204 static bool sub(Integral A, Integral B, unsigned OpBits, Integral *R) {
208 static bool mul(Integral A, Integral B, unsigned OpBits, Integral *R) {
212 static bool rem(Integral A, Integral B, unsigned OpBits, Integral *R) {
217 static bool div(Integral A, Integral B, unsigned OpBits, Integral *R) {
222 static bool bitAnd(Integral A, Integral B, unsigned OpBits, Integral *R) {
227 static bool bitOr(Integral A, Integral B, unsigned OpBits, Integral *R) {
232 static bool bitXor(Integral A, Integral B, unsigned OpBits, Integral *R) {
252 unsigned OpBits, Integral *R) {
253 *R = Integral::from(A.V << B.V, OpBits);
258 unsigned OpBits, Integral *R) {
259 *R = Integral::from(A.V >> B.V, OpBits);