Searched refs:newBigintCarry (Results 1 – 1 of 1) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/ |
D | js_bigint.cpp | 716 uint32_t newBigintCarry = 0; in BigintAdd() local 717 uint32_t addPlus = BigIntHelper::AddHelper(x->GetDigit(i), y->GetDigit(i), newBigintCarry); in BigintAdd() 718 addPlus = BigIntHelper::AddHelper(addPlus, bigintCarry, newBigintCarry); in BigintAdd() 720 bigintCarry = newBigintCarry; in BigintAdd() 724 uint32_t newBigintCarry = 0; in BigintAdd() local 725 uint32_t addPlus = BigIntHelper::AddHelper(x->GetDigit(i), bigintCarry, newBigintCarry); in BigintAdd() 727 bigintCarry = newBigintCarry; in BigintAdd() 751 uint32_t newBigintCarry = 0; in BigintSub() local 752 uint32_t minuSub = BigIntHelper::SubHelper(x->GetDigit(i), y->GetDigit(i), newBigintCarry); in BigintSub() 753 minuSub = BigIntHelper::SubHelper(minuSub, bigintCarry, newBigintCarry); in BigintSub() [all …]
|