Home | History | Annotate | Download | only in accounting

Lines Matching full:card

78     // Find the first dirty card.
85 auto* card = reinterpret_cast<byte*>(word_cur) + i;
86 DCHECK(*card == static_cast<byte>(start_word) || *card == kCardDirty)
87 << "card " << static_cast<size_t>(*card) << " word " << (start_word & 0xFF);
112 * Visitor is expected to take in a card and return the new value. When a value is modified, the
114 * visitor: The visitor which modifies the cards. Returns the new value for a card given an old
116 * modified: Whenever the visitor modifies a card, this visitor is called on the card. Enables
198 // Sanity check the caller was asking for address covered by the card table
204 inline void CardTable::CheckCardValid(byte* card) const {
205 DCHECK(IsValidCard(card))
206 << " card_addr: " << reinterpret_cast<const void*>(card)