Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/
Djs_bigint.cpp717 uint32_t addPlus = BigIntHelper::AddHelper(x->GetDigit(i), y->GetDigit(i), newBigintCarry); in BigintAdd() local
718 addPlus = BigIntHelper::AddHelper(addPlus, bigintCarry, newBigintCarry); in BigintAdd()
719 bigint->SetDigit(i, addPlus); in BigintAdd()
725 uint32_t addPlus = BigIntHelper::AddHelper(x->GetDigit(i), bigintCarry, newBigintCarry); in BigintAdd() local
726 bigint->SetDigit(i, addPlus); in BigintAdd()
737 uint32_t addPlus = x + y; in AddHelper() local
738 if (addPlus < x) { in AddHelper()
741 return addPlus; in AddHelper()