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

  /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...]
tsan_interface_java.h 38 void __tsan_java_init(jptr heap_begin, jptr heap_size) INTERFACE_ATTRIBUTE;
  /art/runtime/gc/accounting/
space_bitmap_test.cc 34 uint8_t* heap_begin = reinterpret_cast<uint8_t*>(0x10000000); local
37 ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity));
61 uint8_t* heap_begin = reinterpret_cast<uint8_t*>(0x10000000); local
65 ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity));
71 reinterpret_cast<mirror::Object*>(heap_begin + j * kObjectAlignment);
82 reinterpret_cast<mirror::Object*>(heap_begin + i * kObjectAlignment);
85 reinterpret_cast<mirror::Object*>(heap_begin + (i + j) * kObjectAlignment);
92 uint8_t* heap_begin = reinterpret_cast<uint8_t*>(0x10000000); local
96 ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity));
101 const mirror::Object* obj = reinterpret_cast<mirror::Object*>(heap_begin + j)
158 uint8_t* heap_begin = reinterpret_cast<uint8_t*>(0x10000000); variable
    [all...]
space_bitmap.cc 52 const std::string& name, MemMap* mem_map, uint8_t* heap_begin, size_t heap_capacity) {
56 return new SpaceBitmap(name, mem_map, bitmap_begin, bitmap_size, heap_begin, heap_capacity);
64 const void* heap_begin,
69 heap_begin_(reinterpret_cast<uintptr_t>(heap_begin)),
70 heap_limit_(reinterpret_cast<uintptr_t>(heap_begin) + heap_capacity),
81 const std::string& name, uint8_t* heap_begin, size_t heap_capacity) {
93 return CreateFromMemMap(name, mem_map.release(), heap_begin, heap_capacity);
space_bitmap.h 47 // heap_begin of heap_capacity bytes, where objects are guaranteed to be kAlignment-aligned.
48 static SpaceBitmap* Create(const std::string& name, uint8_t* heap_begin, size_t heap_capacity);
51 // mem map. The address range covered starts at heap_begin and is of size equal to heap_capacity.
54 uint8_t* heap_begin, size_t heap_capacity);
221 const void* heap_begin,
card_table.cc 61 CardTable* CardTable::Create(const uint8_t* heap_begin, size_t heap_capacity) {
82 (reinterpret_cast<uintptr_t>(heap_begin) >> kCardShift));
card_table.h 56 static CardTable* Create(const uint8_t* heap_begin, size_t heap_capacity);
  /art/runtime/gc/
heap_test.cc 85 uint8_t* heap_begin = reinterpret_cast<uint8_t*>(0x1000); local
88 accounting::ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity));
90 reinterpret_cast<mirror::Object*>(&heap_begin[heap_capacity - kObjectAlignment]);
heap.cc 483 // Add the space so its accounted for in the heap_begin and heap_end.
508 uint8_t* heap_begin = continuous_spaces_.front()->Begin(); local
510 size_t heap_capacity = heap_end - heap_begin;
    [all...]
  /external/compiler-rt/test/tsan/
java.h 6 void __tsan_java_init(jptr heap_begin, jptr heap_size);

Completed in 325 milliseconds