Lines Matching defs:low
1128 uint32_t low = BigIntHelper::AddHelper(
1132 return std::make_tuple(high, low);
1165 uint32_t low;
1166 std::tie(high, low) = Mul(xVal, y->GetDigit(j));
1167 value = BigIntHelper::AddHelper(value, low, currentCarry);
1257 // Then calculate the low order result
1361 uint32_t low = 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);