Home | History | Annotate | Download | only in src

Lines Matching refs:kBigitMask

69     bigits_[i] = static_cast<Chunk>(value & kBigitMask);
197 bigits_[bigit_pos] = sum & kBigitMask;
204 bigits_[bigit_pos] = sum & kBigitMask;
227 bigits_[i + offset] = difference & kBigitMask;
232 bigits_[i + offset] = difference & kBigitMask;
263 bigits_[i] = static_cast<Chunk>(product & kBigitMask);
268 bigits_[used_digits_] = static_cast<Chunk>(carry & kBigitMask);
288 uint64_t tmp = (carry & kBigitMask) + product_low;
289 bigits_[i] = static_cast<Chunk>(tmp & kBigitMask);
295 bigits_[used_digits_] = static_cast<Chunk>(carry & kBigitMask);
382 bigits_[i] = static_cast<Chunk>(accumulator) & kBigitMask;
400 bigits_[i] = static_cast<Chunk>(accumulator) & kBigitMask;
727 bigits_[i] = ((bigits_[i] << shift_amount) + carry) & kBigitMask;
751 bigits_[i + exponent_diff] - static_cast<Chunk>(remove & kBigitMask);
752 bigits_[i + exponent_diff] = difference & kBigitMask;
759 bigits_[i] = difference & kBigitMask;