Chunk 134 Source/platform/PODArena.h m_chunks.append(adoptPtr(new Chunk(m_allocator.get(), m_currentChunkSize))); Chunk 149 Source/platform/PODArena.h class Chunk FINAL { Chunk 150 Source/platform/PODArena.h WTF_MAKE_NONCOPYABLE(Chunk); Chunk 154 Source/platform/PODArena.h Chunk(Allocator* allocator, size_t size) Chunk 164 Source/platform/PODArena.h ~Chunk() Chunk 193 Source/platform/PODArena.h Chunk* m_current; Chunk 195 Source/platform/PODArena.h Vector<OwnPtr<Chunk> > m_chunks; Chunk 144 Source/wtf/dtoa/bignum.cc Chunk current_bigit = 0; Chunk 152 Source/wtf/dtoa/bignum.cc Chunk most_significant_bigit = 0; // Could be = 0; Chunk 194 Source/wtf/dtoa/bignum.cc Chunk carry = 0; Chunk 198 Source/wtf/dtoa/bignum.cc Chunk sum = bigits_[bigit_pos] + other.bigits_[i] + carry; Chunk 205 Source/wtf/dtoa/bignum.cc Chunk sum = bigits_[bigit_pos] + carry; Chunk 224 Source/wtf/dtoa/bignum.cc Chunk borrow = 0; Chunk 228 Source/wtf/dtoa/bignum.cc Chunk difference = bigits_[i + offset] - other.bigits_[i] - borrow; Chunk 233 Source/wtf/dtoa/bignum.cc Chunk difference = bigits_[i + offset] - borrow; Chunk 265 Source/wtf/dtoa/bignum.cc bigits_[i] = static_cast<Chunk>(product & kBigitMask); Chunk 378 Source/wtf/dtoa/bignum.cc Chunk chunk1 = bigits_[copy_offset + bigit_index1]; Chunk 379 Source/wtf/dtoa/bignum.cc Chunk chunk2 = bigits_[copy_offset + bigit_index2]; Chunk 384 Source/wtf/dtoa/bignum.cc bigits_[i] = static_cast<Chunk>(accumulator) & kBigitMask; Chunk 393 Source/wtf/dtoa/bignum.cc Chunk chunk1 = bigits_[copy_offset + bigit_index1]; Chunk 394 Source/wtf/dtoa/bignum.cc Chunk chunk2 = bigits_[copy_offset + bigit_index2]; Chunk 402 Source/wtf/dtoa/bignum.cc bigits_[i] = static_cast<Chunk>(accumulator) & kBigitMask; Chunk 523 Source/wtf/dtoa/bignum.cc Chunk this_bigit = bigits_[used_digits_ - 1]; Chunk 524 Source/wtf/dtoa/bignum.cc Chunk other_bigit = other.bigits_[other.used_digits_ - 1]; Chunk 596 Source/wtf/dtoa/bignum.cc Chunk current_bigit = bigits_[i]; Chunk 603 Source/wtf/dtoa/bignum.cc Chunk most_significant_bigit = bigits_[used_digits_ - 1]; Chunk 612 Source/wtf/dtoa/bignum.cc Bignum::Chunk Bignum::BigitAt(int index) const { Chunk 627 Source/wtf/dtoa/bignum.cc Chunk bigit_a = a.BigitAt(i); Chunk 628 Source/wtf/dtoa/bignum.cc Chunk bigit_b = b.BigitAt(i); Chunk 653 Source/wtf/dtoa/bignum.cc Chunk borrow = 0; Chunk 657 Source/wtf/dtoa/bignum.cc Chunk chunk_a = a.BigitAt(i); Chunk 658 Source/wtf/dtoa/bignum.cc Chunk chunk_b = b.BigitAt(i); Chunk 659 Source/wtf/dtoa/bignum.cc Chunk chunk_c = c.BigitAt(i); Chunk 660 Source/wtf/dtoa/bignum.cc Chunk sum = chunk_a + chunk_b; Chunk 726 Source/wtf/dtoa/bignum.cc Chunk carry = 0; Chunk 728 Source/wtf/dtoa/bignum.cc Chunk new_carry = bigits_[i] >> (kBigitSize - shift_amount); Chunk 747 Source/wtf/dtoa/bignum.cc Chunk borrow = 0; Chunk 752 Source/wtf/dtoa/bignum.cc Chunk difference = bigits_[i + exponent_diff] - ((uint32_t)remove & kBigitMask); Chunk 754 Source/wtf/dtoa/bignum.cc borrow = static_cast<Chunk>((difference >> (kChunkSize - 1)) + Chunk 759 Source/wtf/dtoa/bignum.cc Chunk difference = bigits_[i] - borrow; Chunk 102 Source/wtf/dtoa/bignum.h static const int kChunkSize = sizeof(Chunk) * 8; Chunk 107 Source/wtf/dtoa/bignum.h static const Chunk kBigitMask = (1 << kBigitSize) - 1; Chunk 127 Source/wtf/dtoa/bignum.h Chunk BigitAt(int index) const; Chunk 130 Source/wtf/dtoa/bignum.h Chunk bigits_buffer_[kBigitCapacity]; Chunk 133 Source/wtf/dtoa/bignum.h Vector<Chunk> bigits_;