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

  /external/v8/src/
zone.cc 143 position_ = RoundUp(start, kAlignment);
161 ASSERT(size == RoundDown(size, kAlignment));
170 static const int kSegmentOverhead = sizeof(Segment) + kAlignment;
188 Address result = RoundUp(segment->start(), kAlignment);
zone-inl.h 54 size = RoundUp(size, kAlignment);
61 ASSERT(IsAddressAligned(result, kAlignment, 0));
zone.h 82 static const int kAlignment = kPointerSize;
119 // is guaranteed to be aligned as dictated by kAlignment.
  /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 340 milliseconds