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

  /dalvik/vm/alloc/
CardTable.h 29 #define GC_CARD_DIRTY 0x70
64 * Set the card associated with the given address to GC_CARD_DIRTY.
CardTable.cpp 33 * one of GC_CARD_CLEAN or GC_CARD_DIRTY.
78 if (((uintptr_t)biasedBase & 0xff) != GC_CARD_DIRTY) {
79 int offset = GC_CARD_DIRTY - ((uintptr_t)biasedBase & 0xff);
83 assert(((uintptr_t)biasedBase & 0xff) == GC_CARD_DIRTY);
195 *cardAddr = GC_CARD_DIRTY;
206 return *card == GC_CARD_DIRTY;
MarkSweep.cpp 526 if (*card != GC_CARD_DIRTY) {
566 dirty = (const u1 *)memchr(ptr, GC_CARD_DIRTY, limit - ptr);

Completed in 150 milliseconds