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

1 2

  /art/runtime/
verify_object-inl.h 35 bool failed = !IsAligned<kObjectAlignment>(obj);
38 failed = failed || !IsAligned<kObjectAlignment>(c);
globals.h 44 static constexpr size_t kObjectAlignment = 8;
asm_support.h 222 ADD_TEST_EQ(static_cast<size_t>(OBJECT_ALIGNMENT_MASK), art::kObjectAlignment - 1)
226 ~static_cast<uint32_t>(art::kObjectAlignment - 1))
fault_handler.cc 334 if (method_obj == 0 || !IsAligned<kObjectAlignment>(method_obj)) {
349 if (!IsAligned<kObjectAlignment>(cls)) {
  /art/runtime/gc/accounting/
space_bitmap_test.cc 70 reinterpret_cast<mirror::Object*>(heap_begin + j * kObjectAlignment);
81 reinterpret_cast<mirror::Object*>(heap_begin + i * kObjectAlignment);
84 reinterpret_cast<mirror::Object*>(heap_begin + (i + j) * kObjectAlignment);
161 RunTest<kObjectAlignment>();
card_table_test.cc 83 for (const uint8_t* addr = HeapBegin(); addr < HeapLimit(); addr += kObjectAlignment) {
114 start_offset = (start_offset + kObjectAlignment) % CardTable::kCardSize;
120 end_offset = (end_offset + kObjectAlignment) % CardTable::kCardSize;
card_table.h 107 size_t Scan(SpaceBitmap<kObjectAlignment>* bitmap, uint8_t* scan_begin, uint8_t* scan_end,
space_bitmap.h 230 typedef SpaceBitmap<kObjectAlignment> ContinuousSpaceBitmap;
space_bitmap.cc 271 template class SpaceBitmap<kObjectAlignment>;
  /art/runtime/gc/
heap_test.cc 67 const size_t heap_capacity = kObjectAlignment * (sizeof(intptr_t) * 8 + 1);
71 reinterpret_cast<mirror::Object*>(&heap_begin[heap_capacity - kObjectAlignment]);
heap.cc     [all...]
heap.h 535 void MarkAllocStack(accounting::SpaceBitmap<kObjectAlignment>* bitmap1,
536 accounting::SpaceBitmap<kObjectAlignment>* bitmap2,
    [all...]
  /art/compiler/utils/
dex_cache_arrays_layout-inl.h 79 return RoundUp(array_size, kObjectAlignment);
  /art/runtime/gc/collector/
concurrent_copying.h 42 typedef SpaceBitmap<kObjectAlignment> ContinuousSpaceBitmap;
248 std::vector<accounting::SpaceBitmap<kObjectAlignment>*> cc_bitmaps_;
249 accounting::SpaceBitmap<kObjectAlignment>* region_space_bitmap_;
concurrent_copying.cc     [all...]
  /external/v8/src/
globals.h 226 const intptr_t kObjectAlignment = 1 << kObjectAlignmentBits;
227 const intptr_t kObjectAlignmentMask = kObjectAlignment - 1;
factory.cc     [all...]
  /art/imgdiag/
imgdiag.cc 361 const uint8_t* current = begin_image_ptr + RoundUp(sizeof(ImageHeader), kObjectAlignment);
364 CHECK_ALIGNED(current, kObjectAlignment);
389 RoundUp(object_address + obj->SizeOf(), kObjectAlignment));
467 current += RoundUp(obj->SizeOf(), kObjectAlignment);
    [all...]
  /art/runtime/gc/space/
image_space.cc 648 uint8_t* current = Begin() + RoundUp(sizeof(ImageHeader), kObjectAlignment);
650 CHECK_ALIGNED(current, kObjectAlignment);
657 current += RoundUp(obj->SizeOf(), kObjectAlignment);
    [all...]
region_space.h 167 static constexpr size_t kAlignment = kObjectAlignment;
  /external/v8/src/heap/
heap.cc     [all...]
  /art/compiler/
image_writer.cc 249 DCHECK_ALIGNED(new_offset, kObjectAlignment);
463 size_t offset_delta = RoundUp(object_size, kObjectAlignment); // 64-bit alignment
    [all...]
image_writer.h 84 image_begin_ + RoundUp(sizeof(ImageHeader), kObjectAlignment) + it->second + offset);
  /art/oatdump/
oatdump.cc     [all...]
  /art/runtime/hprof/
hprof.cc     [all...]

Completed in 899 milliseconds

1 2