Home
last modified time | relevance | path

Searched refs:BitwiseNOT (Results 1 – 4 of 4) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/
Djs_bigint.h64 static JSHandle<BigInt> BitwiseNOT(JSThread *thread, JSHandle<BigInt> x);
Djs_bigint.cpp995 JSHandle<BigInt> BigInt::BitwiseNOT(JSThread *thread, JSHandle<BigInt> x) in BitwiseNOT() function in panda::ecmascript::BigInt
/arkcompiler/ets_runtime/ecmascript/tests/
Djs_bigint_test.cpp263 JSHandle<BigInt> notRes1 = BigInt::BitwiseNOT(thread, maxSafeInt); in HWTEST_F_L0()
267 JSHandle<BigInt> notRes2 = BigInt::BitwiseNOT(thread, minusMaxSafeInt); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/stubs/
Druntime_stubs-inl.h761 return BigInt::BitwiseNOT(thread, bigValue).GetTaggedValue(); in RuntimeNot()