Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/
Djs_bigint.cpp1035 uint32_t needLength = expValue / DATEBITS + 1; in Exponentiate() local
1036 JSHandle<BigInt> bigint = CreateBigint(thread, needLength); in Exponentiate()
1039 bigint->SetDigit(needLength - 1, value); in Exponentiate()
1095 uint32_t needLength = x->GetLength() + y->GetLength(); in Multiply() local
1096 JSHandle<BigInt> bigint = BigInt::CreateBigint(thread, needLength); in Multiply()