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

  /art/runtime/
globals.h 45 const int kObjectAlignment = 8;
  /art/runtime/gc/space/
image_space.cc 153 byte* current = Begin() + RoundUp(sizeof(ImageHeader), kObjectAlignment);
155 DCHECK_ALIGNED(current, kObjectAlignment);
159 current += RoundUp(obj->SizeOf(), kObjectAlignment);
  /external/chromium_org/v8/src/
v8globals.h 44 const intptr_t kObjectAlignment = 1 << kObjectAlignmentBits;
45 const intptr_t kObjectAlignmentMask = kObjectAlignment - 1;
heap.cc     [all...]
objects-inl.h     [all...]
  /external/v8/src/
v8globals.h 44 const intptr_t kObjectAlignment = 1 << kObjectAlignmentBits;
45 const intptr_t kObjectAlignmentMask = kObjectAlignment - 1;
heap.cc     [all...]
objects-inl.h     [all...]
  /art/runtime/gc/
heap.cc 640 if (UNLIKELY(!IsAligned<kObjectAlignment>(obj))) {
649 if (obj == NULL || UNLIKELY(!IsAligned<kObjectAlignment>(obj))) {
729 CHECK(IsAligned<kObjectAlignment>(obj)) << "Object isn't aligned: " << obj;
739 } else if (UNLIKELY(!IsAligned<kObjectAlignment>(c))) {
    [all...]
  /art/oatdump/
oatdump.cc 790 size_t alignment_bytes = RoundUp(header_bytes, kObjectAlignment) - header_bytes;
    [all...]
  /art/compiler/
image_writer.cc 179 DCHECK_ALIGNED(obj, kObjectAlignment);
  /external/chromium_org/v8/src/arm/
code-stubs-arm.cc     [all...]
  /external/chromium_org/v8/src/mips/
code-stubs-mips.cc     [all...]
  /external/v8/src/arm/
code-stubs-arm.cc     [all...]
  /external/v8/src/mips/
code-stubs-mips.cc     [all...]

Completed in 506 milliseconds