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

  /art/runtime/gc/
heap_test.cc 66 uint8_t* heap_begin = reinterpret_cast<uint8_t*>(0x1000); local
69 accounting::ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity));
71 reinterpret_cast<mirror::Object*>(&heap_begin[heap_capacity - kObjectAlignment]);
heap.cc 480 // Add the space so its accounted for in the heap_begin and heap_end.
505 uint8_t* heap_begin = continuous_spaces_.front()->Begin(); local
507 size_t heap_capacity = heap_end - heap_begin;
    [all...]
  /art/runtime/gc/accounting/
space_bitmap_test.cc 33 uint8_t* heap_begin = reinterpret_cast<uint8_t*>(0x10000000); local
36 ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity));
60 uint8_t* heap_begin = reinterpret_cast<uint8_t*>(0x10000000); local
64 ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity));
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);
91 uint8_t* heap_begin = reinterpret_cast<uint8_t*>(0x10000000); local
95 ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity));
100 const mirror::Object* obj = reinterpret_cast<mirror::Object*>(heap_begin + j)
157 uint8_t* heap_begin = reinterpret_cast<uint8_t*>(0x10000000); variable
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_interface_java.cc 30 const uptr heap_begin; member in struct:__tsan::JavaContext
33 JavaContext(jptr heap_begin, jptr heap_size)
34 : heap_begin(heap_begin)
69 void __tsan_java_init(jptr heap_begin, jptr heap_size) {
71 DPrintf("#%d: java_init(%p, %p)\n", thr->tid, heap_begin, heap_size);
73 CHECK_GT(heap_begin, 0);
75 CHECK_EQ(heap_begin % kHeapAlignment, 0);
77 CHECK_LT(heap_begin, heap_begin + heap_size)
    [all...]

Completed in 434 milliseconds