HomeSort by relevance Sort by last modified time
    Searched refs:DoubleChunk (Results 1 - 2 of 2) sorted by null

  /external/v8/src/
bignum.h 98 typedef uint64_t DoubleChunk;
101 static const int kDoubleChunkSize = sizeof(DoubleChunk) * 8;
bignum.cc 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
    [all...]

Completed in 31 milliseconds