Home
last modified time | relevance | path

Searched refs:BitwiseSubOne (Results 1 – 3 of 3) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/
Djs_bigint.cpp274 JSHandle<BigInt> yVal = BigInt::BitwiseSubOne(thread, y, y->GetLength()); in OneIsNegativeAND()
302 JSHandle<BigInt> xVal = BitwiseSubOne(thread, x, x->GetLength()); in BitwiseAND()
303 JSHandle<BigInt> yVal = BitwiseSubOne(thread, y, y->GetLength()); in BitwiseAND()
321 JSHandle<BigInt> yVal = BigInt::BitwiseSubOne(thread, y, y->GetLength()); in OneIsNegativeXOR()
335 JSHandle<BigInt> xVal = BitwiseSubOne(thread, x, x->GetLength()); in BitwiseXOR()
336 JSHandle<BigInt> yVal = BitwiseSubOne(thread, y, y->GetLength()); in BitwiseXOR()
350 JSHandle<BigInt> BigInt::BitwiseSubOne(JSThread *thread, JSHandle<BigInt> bigint, uint32_t maxLen) in BitwiseSubOne() function in panda::ecmascript::BigInt
405 JSHandle<BigInt> yVal = BigInt::BitwiseSubOne(thread, y, maxLen); in OneIsNegativeOR()
439 JSHandle<BigInt> xVal = BitwiseSubOne(thread, x, maxLen); in BitwiseOR()
440 JSHandle<BigInt> yVal = BitwiseSubOne(thread, y, yLen); in BitwiseOR()
Djs_bigint.h57 … static JSHandle<BigInt> BitwiseSubOne(JSThread *thread, JSHandle<BigInt> bigint, uint32_t maxLen);
/arkcompiler/ets_runtime/ecmascript/tests/
Djs_bigint_test.cpp273 JSHandle<BigInt> subOneRes = BigInt::BitwiseSubOne(thread, maxSafeIntPlusOne, maxSize); in HWTEST_F_L0()