Home | History | Annotate | Download | only in accounting

Lines Matching defs:card

93     // Find the first dirty card.
100 auto* card = reinterpret_cast<uint8_t*>(word_cur) + i;
101 DCHECK(*card == static_cast<uint8_t>(start_word) || *card == kCardDirty)
102 << "card " << static_cast<size_t>(*card) << " intptr_t " << (start_word & 0xFF);
218 // Sanity check the caller was asking for address covered by the card table
230 inline void CardTable::CheckCardValid(uint8_t* card) const {
231 DCHECK(IsValidCard(card))
232 << " card_addr: " << reinterpret_cast<const void*>(card)