Lines Matching defs:high
1130 uint32_t high = (midRes1 >> HALFDATEBITS) + (midRes2 >> HALFDATEBITS) + highRes + carry;
1132 return std::make_tuple(high, low);
1157 uint32_t high = 0;
1162 value = BigIntHelper::AddHelper(value, high, currentCarry);
1166 std::tie(high, low) = Mul(xVal, y->GetDigit(j));
1172 while (carry != 0 || high != 0) {
1176 value = BigIntHelper::AddHelper(value, high, currentCarry);
1177 high = 0;
1233 // so high << leadingZeros will not lose the significant bit
1244 // Calculate high order results first
1319 uint32_t high = 0;
1320 std::tie(high, value) = Mul(value, q);
1321 // The current value plus the high and carry of the last calculation
1325 // Record the new high bit and carry for the next round
1327 lastHigh = high;
1360 uint32_t high = 0;
1362 std::tie(high, low) = Mul(q, vHighestNext);
1363 while (high > UHighest || (high == UHighest && low > UHighestNext)) {
1371 std::tie(high, low) = Mul(q, vHighestNext);