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

  /external/skia/src/gpu/
GrMemoryPool.h 67 kAlignment = 8,
68 kHeaderSize = GR_CT_ALIGN_UP(sizeof(BlockHeader), kAlignment),
69 kPerAllocPad = GR_CT_ALIGN_UP(sizeof(BlockHeader*), kAlignment),
GrMemoryPool.cpp 20 fMinAllocSize = GrSizeAlignUp(minAllocSize + kPerAllocPad, kAlignment),
21 fPreallocSize = GrSizeAlignUp(preallocSize + kPerAllocPad, kAlignment);
41 size = GrSizeAlignUp(size, kAlignment);
109 GrAssert(!(reinterpret_cast<intptr_t>(block) % kAlignment));
140 GrAssert(!(b % kAlignment));
141 GrAssert(!(totalSize % kAlignment));
142 GrAssert(!(userSize % kAlignment));
143 GrAssert(!(block->fCurrPtr % kAlignment));
  /external/v8/src/
zone-inl.h 45 size = RoundUp(size, kAlignment);
49 if (kPointerSize == 4 && kAlignment == 4) {
52 ASSERT(kAlignment >= kPointerSize);
65 ASSERT(IsAddressAligned(result, kAlignment, 0));
zone.cc 144 position_ = RoundUp(start, kAlignment);
170 ASSERT(size == RoundDown(size, kAlignment));
179 static const int kSegmentOverhead = sizeof(Segment) + kAlignment;
203 Address result = RoundUp(segment->start(), kAlignment);
zone.h 98 static const int kAlignment = kPointerSize;
135 // is guaranteed to be aligned as dictated by kAlignment.
spaces.cc 152 MemoryChunk::kAlignment);
220 size_t aligned_requested = RoundUp(requested, MemoryChunk::kAlignment);
229 ASSERT(IsAddressAligned(current.start, MemoryChunk::kAlignment));
246 ASSERT(IsAddressAligned(address, MemoryChunk::kAlignment));
516 MemoryChunk::kAlignment));
523 MemoryChunk::kAlignment,
540 MemoryChunk::kAlignment,
    [all...]
spaces.h 477 static const intptr_t kAlignment =
480 static const intptr_t kAlignmentMask = kAlignment - 1;
851 ASSERT(IsAddressAligned(start, MemoryChunk::kAlignment));
856 ASSERT(IsAddressAligned(start, MemoryChunk::kAlignment));
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
stream.cc 671 buffer_alloc_ = new char[buffer_length_ + kAlignment];
672 buffer_ = reinterpret_cast<char*>(ALIGNP(buffer_alloc_, kAlignment));
681 if (char* new_buffer_alloc = new char[size + kAlignment]) {
683 ALIGNP(new_buffer_alloc, kAlignment));
stream.h 534 static const int kAlignment = 16;
  /external/webkit/Source/JavaScriptCore/wtf/
FastMalloc.cpp 611 static const size_t kAlignment = 1 << kAlignShift;
868 for (size_t size = kAlignment; size <= kMaxSize; size += (1 << alignshift)) {
920 for (size_t s = next_size; s <= max_size_in_class; s += kAlignment) {
923 next_size = static_cast<int>(max_size_in_class + kAlignment);
1001 = (((sizeof(T) + kAlignment - 1) / kAlignment) * kAlignment);
    [all...]

Completed in 181 milliseconds