Lines Matching defs:AddHelper
404 newBigint->SetDigit(i, BigIntHelper::AddHelper(bigint->GetDigit(i), carry, bigintCarry));
761 uint32_t addPlus = BigIntHelper::AddHelper(x->GetDigit(i), y->GetDigit(i), newBigintCarry);
762 addPlus = BigIntHelper::AddHelper(addPlus, bigintCarry, newBigintCarry);
769 uint32_t addPlus = BigIntHelper::AddHelper(x->GetDigit(i), bigintCarry, newBigintCarry);
779 inline uint32_t BigIntHelper::AddHelper(uint32_t x, uint32_t y, uint32_t &bigintCarry)
1128 uint32_t low = BigIntHelper::AddHelper(
1129 BigIntHelper::AddHelper(lowRes, midRes1 << HALFDATEBITS, carry), midRes2 << HALFDATEBITS, carry);
1162 value = BigIntHelper::AddHelper(value, high, currentCarry);
1163 value = BigIntHelper::AddHelper(value, carry, currentCarry);
1167 value = BigIntHelper::AddHelper(value, low, currentCarry);
1176 value = BigIntHelper::AddHelper(value, high, currentCarry);
1178 value = BigIntHelper::AddHelper(value, carry, currentCarry);
1322 value = BigIntHelper::AddHelper(value, lastHigh, carry);
1323 value = BigIntHelper::AddHelper(value, lastCarry, carry);
1349 uint32_t value = BigIntHelper::AddHelper(u->GetDigit(pos + i), v->GetDigit(i), carry);
1350 value = BigIntHelper::AddHelper(value, lastCarry, carry);