Home
last modified time | relevance | path

Searched refs:obj_end (Results 1 – 4 of 4) sorted by relevance

/art/runtime/base/
Dgc_visited_arena_pool.cc78 void TrackedArena::SetFirstObject(uint8_t* obj_begin, uint8_t* obj_end) { in SetFirstObject() argument
80 DCHECK_LE(static_cast<void*>(Begin()), static_cast<void*>(obj_end)); in SetFirstObject()
81 DCHECK_LT(static_cast<void*>(obj_begin), static_cast<void*>(obj_end)); in SetFirstObject()
85 size_t last_byte_idx = DivideByPageSize(static_cast<size_t>(obj_end - 1 - Begin())); in SetFirstObject()
Dgc_visited_arena_pool.h105 EXPORT void SetFirstObject(uint8_t* obj_begin, uint8_t* obj_end);
/art/runtime/gc/accounting/
Dspace_bitmap_test.cc153 const mirror::Object* obj_end = reinterpret_cast<mirror::Object*>(heap_begin + range.second); in TYPED_TEST() local
154 bitmap.ClearRange(obj_begin, obj_end); in TYPED_TEST()
/art/runtime/gc/collector/
Dmark_compact.cc2867 uint8_t* obj_end = reinterpret_cast<uint8_t*>(obj) + obj_size; in UpdateNonMovingSpaceBlackAllocations() local
2868 while (next_page_begin < obj_end) { in UpdateNonMovingSpaceBlackAllocations()
2959 uint8_t* obj_end = byte + obj_size; in MultiObjectArena() local
2964 uint8_t* end_boundary = std::min(obj_end, page_end); in MultiObjectArena()