Lines Matching refs:Operate
243 JSHandle<BigInt> BigInt::BitwiseOp(JSThread *thread, Operate op, JSHandle<BigInt> x, JSHandle<BigInt> y)
259 if (op == Operate::OR) {
261 } else if (op == Operate::AND) {
264 ASSERT(op == Operate::XOR);
268 if (op == Operate::OR || op == Operate::XOR) {
316 JSHandle<BigInt> temp = BitwiseOp(thread, Operate::OR, xVal, yVal);
330 return BitwiseOp(thread, Operate::AND, x, y);
337 JSHandle<BigInt> temp = BigInt::BitwiseOp(thread, Operate::XOR, x, yVal);
353 return BitwiseOp(thread, Operate::XOR, xVal, yVal);
363 return BitwiseOp(thread, Operate::XOR, x, y);
459 JSHandle<BigInt> temp = BitwiseOp(thread, Operate::AND, xVal, yVal);
474 return BitwiseOp(thread, Operate::OR, x, y);