Searched defs:CardTable (Results 1 - 2 of 2) sorted by relevance

/art/runtime/gc/accounting/
H A Dcard_table.cc33 constexpr size_t CardTable::kCardShift;
34 constexpr size_t CardTable::kCardSize;
35 constexpr uint8_t CardTable::kCardClean;
36 constexpr uint8_t CardTable::kCardDirty;
57 * byte is equal to GC_DIRTY_CARD. See CardTable::Create for details.
60 CardTable* CardTable::Create(const uint8_t* heap_begin, size_t heap_capacity) {
89 return new CardTable(mem_map.release(), biased_begin, offset);
92 CardTable::CardTable(MemMa function in class:art::gc::accounting::CardTable
[all...]
H A Dcard_table.h48 class CardTable { class in namespace:art::gc::accounting
55 static CardTable* Create(const uint8_t* heap_begin, size_t heap_capacity);
56 ~CardTable();
134 CardTable(MemMap* begin, uint8_t* biased_begin, size_t offset);
152 DISALLOW_IMPLICIT_CONSTRUCTORS(CardTable);

Completed in 1432 milliseconds