Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/
Djs_bigint.cpp1021 uint32_t expValue = exponent->GetDigit(0); in Exponentiate() local
1023 if (base->GetSign() && !(expValue & 1)) { in Exponentiate()
1035 uint32_t needLength = expValue / DATEBITS + 1; in Exponentiate()
1038 uint32_t value = 1U << (expValue % DATEBITS); in Exponentiate()
1041 bigint->SetSign(static_cast<bool>(expValue & 1)); in Exponentiate()
1047 if (expValue & 1) { in Exponentiate()
1050 expValue >>= 1; in Exponentiate()
1051 for (; expValue; expValue >>= 1) { in Exponentiate()
1054 if (expValue & 1) { in Exponentiate()