Home
last modified time | relevance | path

Searched refs:needLen (Results 1 - 2 of 2) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/
H A Djs_bigint.cpp671 uint32_t needLen = size * MULTIPLE; in CreateBigWords() local
672 if (needLen > MAXSIZE) { in CreateBigWords()
676 JSHandle<BigInt> bigint = CreateBigint(thread, needLen); in CreateBigWords()
910 void BigInt::JudgeRoundDown(JSHandle<BigInt> x, uint32_t digitMove, uint32_t bitsMove, uint32_t &needLen, in JudgeRoundDown() argument
929 // and needLen needs to be increased by 1 in JudgeRoundDown()
931 needLen++; in JudgeRoundDown()
948 uint32_t needLen = x->GetLength() - digitMove; in RightShiftHelper() local
953 JudgeRoundDown(x, digitMove, bitsMove, needLen, roundDown); in RightShiftHelper()
955 JSHandle<BigInt> bigint = CreateBigint(thread, needLen); in RightShiftHelper()
987 // If bitsMove is not zero, needLen need in LeftShiftHelper()
988 uint32_t needLen = digitMove + x->GetLength() + static_cast<uint32_t>(!!bitsMove); LeftShiftHelper() local
1279 uint32_t needLen = len; FormatLeftShift() local
[all...]
H A Djs_bigint.h95 static void JudgeRoundDown(JSHandle<BigInt> x, uint32_t digitMove, uint32_t bitsMove, uint32_t &needLen,

Completed in 3 milliseconds