OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:heap_begin
(Results
1 - 4
of
4
) sorted by null
/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);
/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/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
...]
Completed in 35 milliseconds