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

  /external/v8/src/
zone.cc 140 position_ = RoundUp(start, kAlignment);
158 ASSERT(size == RoundDown(size, kAlignment));
167 static const int kSegmentOverhead = sizeof(Segment) + kAlignment;
185 Address result = RoundUp(segment->start(), kAlignment);
zone-inl.h 42 size = RoundUp(size, kAlignment);
49 ASSERT(IsAddressAligned(result, kAlignment, 0));
zone.h 77 static const int kAlignment = kPointerSize;
110 // is guaranteed to be aligned as dictated by kAlignment.
  /external/webkit/JavaScriptCore/wtf/
FastMalloc.cpp 570 static const size_t kAlignment = 1 << kAlignShift;
827 for (size_t size = kAlignment; size <= kMaxSize; size += (1 << alignshift)) {
879 for (size_t s = next_size; s <= max_size_in_class; s += kAlignment) {
882 next_size = static_cast<int>(max_size_in_class + kAlignment);
960 = (((sizeof(T) + kAlignment - 1) / kAlignment) * kAlignment);
    [all...]

Completed in 82 milliseconds