Lines Matching defs:sum
164 Chunk sum = bigits_[bigit_pos] + other.bigits_[i] + carry;
165 bigits_[bigit_pos] = sum & kBigitMask;
166 carry = sum >> kBigitSize;
171 Chunk sum = bigits_[bigit_pos] + carry;
172 bigits_[bigit_pos] = sum & kBigitMask;
173 carry = sum >> kBigitSize;
320 // sum up used_digits of Bigit*Bigit.
333 // The sum of the two indices must be equal to i.
350 // Invariant: sum of both indices is again equal to i.
607 Chunk sum = chunk_a + chunk_b;
608 if (sum > chunk_c + borrow) {
611 borrow = chunk_c + borrow - sum;