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

  /art/runtime/gc/accounting/
card_table.cc 74 // We allocated up to a bytes worth of extra space to allow biased_begin's byte value to equal
77 byte* biased_begin = reinterpret_cast<byte*>(reinterpret_cast<uintptr_t>(cardtable_begin) - local
79 uintptr_t biased_byte = reinterpret_cast<uintptr_t>(biased_begin) & 0xff;
83 biased_begin += offset;
85 CHECK_EQ(reinterpret_cast<uintptr_t>(biased_begin) & 0xff, kCardDirty);
86 return new CardTable(mem_map.release(), biased_begin, offset);
89 CardTable::CardTable(MemMap* mem_map, byte* biased_begin, size_t offset)
90 : mem_map_(mem_map), biased_begin_(biased_begin), offset_(offset) {
card_table.h 129 CardTable(MemMap* begin, byte* biased_begin, size_t offset);

Completed in 75 milliseconds