Searched refs:BitwiseAND (Results 1 - 4 of 4) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/tests/ |
H A D | js_bigint_test.cpp | 151 * @tc.name: BitwiseOp & BitwiseAND & BitwiseXOR & BitwiseOR & BitwiseSubOne & BitwiseAddOne & BitwiseNOT 170 JSHandle<BigInt> andRes = BigInt::BitwiseAND(thread, maxSafeIntPlusOne, bigint1); in HWTEST_F_L0() 175 JSHandle<BigInt> andRes1 = BigInt::BitwiseAND(thread, bigint1, bigint2); in HWTEST_F_L0() 180 JSHandle<BigInt> andRes2 = BigInt::BitwiseAND(thread, bigint2, bigint1); in HWTEST_F_L0() 186 JSHandle<BigInt> andRes3 = BigInt::BitwiseAND(thread, bigint3, bigint1); in HWTEST_F_L0() 189 JSHandle<BigInt> andRes4 = BigInt::BitwiseAND(thread, bigint1, bigint3); in HWTEST_F_L0() 194 JSHandle<BigInt> andRes5 = BigInt::BitwiseAND(thread, bigint3, bigint4); in HWTEST_F_L0() 199 JSHandle<BigInt> andRes6 = BigInt::BitwiseAND(thread, bigint4, bigint3); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | js_bigint.h | 54 static JSHandle<BigInt> BitwiseAND(JSThread *thread, JSHandle<BigInt> x, JSHandle<BigInt> y);
|
H A D | js_bigint.cpp | 308 JSHandle<BigInt> BigInt::BitwiseAND(JSThread *thread, JSHandle<BigInt> x, JSHandle<BigInt> y) in BitwiseAND() function in panda::ecmascript::BigInt
|
/arkcompiler/ets_runtime/ecmascript/stubs/ |
H A D | runtime_stubs-inl.h | 2075 return BigInt::BitwiseAND(thread, leftBigint, rightBigint).GetTaggedValue(); in RuntimeAnd2()
|
Completed in 13 milliseconds