Home | History | Annotate | Download | only in src

Lines Matching full:accumulator

363   DoubleChunk accumulator = 0;
379 accumulator += static_cast<DoubleChunk>(chunk1) * chunk2;
383 bigits_[i] = static_cast<Chunk>(accumulator) & kBigitMask;
384 accumulator >>= kBigitSize;
390 // Inner loop runs 0 times on last iteration, emptying accumulator.
394 accumulator += static_cast<DoubleChunk>(chunk1) * chunk2;
401 bigits_[i] = static_cast<Chunk>(accumulator) & kBigitMask;
402 accumulator >>= kBigitSize;
405 // accumulator must be 0 now.
406 ASSERT(accumulator == 0);