Home | History | Annotate | Download | only in src

Lines Matching refs:DoubleChunk

260   DoubleChunk carry = 0;
262 DoubleChunk product = static_cast<DoubleChunk>(factor) * bigits_[i] + carry;
357 // Assert that the additional number of bits in a DoubleChunk are enough to
362 DoubleChunk accumulator = 0;
378 accumulator += static_cast<DoubleChunk>(chunk1) * chunk2;
393 accumulator += static_cast<DoubleChunk>(chunk1) * chunk2;
748 DoubleChunk product = static_cast<DoubleChunk>(factor) * other.bigits_[i];
749 DoubleChunk remove = borrow + product;