Home
last modified time | relevance | path

Searched refs:Divide (Results 1 – 8 of 8) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/tests/
Djs_bigint_test.cpp418 JSHandle<BigInt> divRes1 = BigInt::Divide(thread, resBigint3, resBigint2); in HWTEST_F_L0()
420 JSHandle<BigInt> divRes2 = BigInt::Divide(thread, resBigint3, resBigint1); in HWTEST_F_L0()
423 JSHandle<BigInt> divRes3 = BigInt::Divide(thread, resBigint4, resBigint1); in HWTEST_F_L0()
425 JSHandle<BigInt> divRes4 = BigInt::Divide(thread, resBigint4, resBigint2); in HWTEST_F_L0()
427 JSHandle<BigInt> divRes5 = BigInt::Divide(thread, baseBigint, zero); in HWTEST_F_L0()
430 JSHandle<BigInt> divRes6 = BigInt::Divide(thread, expBigint2, baseBigint); in HWTEST_F_L0()
433 JSHandle<BigInt> divRes7 = BigInt::Divide(thread, expBigint1, baseBigint); in HWTEST_F_L0()
Drb_tree_node_test.cpp183 RBTreeNode::Divide(thread, newTab, rootNodeVa, 0, TaggedHashArray::DEFAULT_INITIAL_CAPACITY); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/
Dtagged_node.h129 static void Divide(JSThread *thread, JSHandle<TaggedHashArray> table,
Djs_bigint.h82 static JSHandle<BigInt> Divide(JSThread *thread, JSHandle<BigInt> x, JSHandle<BigInt> y);
Dtagged_hash_array.cpp122 RBTreeNode::Divide(thread, newTab, oldValue, j, oldCapacity); in Resize()
Dtagged_node.cpp116 void RBTreeNode::Divide(JSThread *thread, JSHandle<TaggedHashArray> table, in Divide() function in panda::ecmascript::RBTreeNode
Djs_bigint.cpp1406 JSHandle<BigInt> BigInt::Divide(JSThread *thread, JSHandle<BigInt> x, JSHandle<BigInt> y) in Divide() function in panda::ecmascript::BigInt
/arkcompiler/ets_runtime/ecmascript/stubs/
Druntime_stubs-inl.h1631 return BigInt::Divide(thread, bigLeft, bigRight).GetTaggedValue(); in RuntimeDiv2()