Lines Matching full:card
90 // Find the first dirty card.
97 auto* card = reinterpret_cast<uint8_t*>(word_cur) + i;
98 DCHECK(*card == static_cast<uint8_t>(start_word) || *card == kCardDirty)
99 << "card " << static_cast<size_t>(*card) << " intptr_t " << (start_word & 0xFF);
103 *card = 0;
130 * Visitor is expected to take in a card and return the new value. When a value is modified, the
132 * visitor: The visitor which modifies the cards. Returns the new value for a card given an old
134 * modified: Whenever the visitor modifies a card, this visitor is called on the card. Enables
221 // Sanity check the caller was asking for address covered by the card table
233 inline void CardTable::CheckCardValid(uint8_t* card) const {
234 DCHECK(IsValidCard(card))
235 << " card_addr: " << reinterpret_cast<const void*>(card)