/art/runtime/gc/accounting/ |
space_bitmap_test.cc | 35 byte* heap_begin = reinterpret_cast<byte*>(0x10000000); local 38 heap_begin, heap_capacity)); 61 byte* heap_begin = reinterpret_cast<byte*>(0x10000000); local 65 heap_begin, heap_capacity)); 71 reinterpret_cast<mirror::Object*>(heap_begin + j * SpaceBitmap::kAlignment); 82 reinterpret_cast<mirror::Object*>(heap_begin + i * SpaceBitmap::kAlignment); 85 reinterpret_cast<mirror::Object*>(heap_begin + (i + j) * SpaceBitmap::kAlignment);
|
card_table.cc | 53 CardTable* CardTable::Create(const byte* heap_begin, size_t heap_capacity) { 71 (reinterpret_cast<uintptr_t>(heap_begin) >> kCardShift));
|
space_bitmap.h | 52 // heap_begin of heap_capacity bytes, where objects are guaranteed to be kAlignment-aligned. 53 static SpaceBitmap* Create(const std::string& name, byte* heap_begin, size_t heap_capacity); 56 // mem map. The address range covered starts at heap_begin and is of size equal to heap_capacity. 59 byte* heap_begin, size_t heap_capacity); 186 const void* heap_begin) 188 heap_begin_(reinterpret_cast<uintptr_t>(heap_begin)),
|
space_bitmap.cc | 54 byte* heap_begin, size_t heap_capacity) { 58 return new SpaceBitmap(name, mem_map, bitmap_begin, bitmap_size, heap_begin); 61 SpaceBitmap* SpaceBitmap::Create(const std::string& name, byte* heap_begin, size_t heap_capacity) { 62 CHECK(heap_begin != NULL); 70 return CreateFromMemMap(name, mem_map.release(), heap_begin, heap_capacity);
|
card_table.h | 53 static CardTable* Create(const byte* heap_begin, size_t heap_capacity);
|
/external/compiler-rt/lib/tsan/rtl/ |
tsan_interface_java.cc | 59 const uptr heap_begin; member in struct:__tsan::JavaContext 63 JavaContext(jptr heap_begin, jptr heap_size) 64 : heap_begin(heap_begin) 100 uptr i = (addr - jctx->heap_begin) / kHeapAlignment; 106 uptr p = jctx->heap_begin + i * kHeapAlignment; 107 CHECK_GE(p, jctx->heap_begin); 108 CHECK_LT(p, jctx->heap_begin + jctx->heap_size); 123 if (jctx == 0 || addr < jctx->heap_begin 124 || addr >= jctx->heap_begin + jctx->heap_size [all...] |
tsan_interface_java.h | 38 void __tsan_java_init(jptr heap_begin, jptr heap_size) INTERFACE_ATTRIBUTE;
|
/art/runtime/gc/ |
heap_test.cc | 59 byte* heap_begin = reinterpret_cast<byte*>(0x1000); local 62 heap_begin, 65 reinterpret_cast<mirror::Object*>(&heap_begin[heap_capacity -
|
heap.cc | 184 byte* heap_begin = continuous_spaces_.front()->Begin(); local 191 card_table_.reset(accounting::CardTable::Create(heap_begin, heap_capacity)); [all...] |
/external/compiler-rt/lib/tsan/lit_tests/ |
java.h | 8 void __tsan_java_init(jptr heap_begin, jptr heap_size);
|