Home | History | Annotate | Download | only in alloc

Lines Matching refs:dirty

515  * Scans range of dirty cards between start and end.  A range of dirty
516 * cards is composed consecutively dirty cards or dirty cards spanned
553 dirty cards.
558 const u1 *base, *limit, *ptr, *dirty;
566 dirty = (const u1 *)memchr(ptr, GC_CARD_DIRTY, limit - ptr);
567 if (dirty == NULL) {
570 assert((dirty > ptr) && (dirty < limit));
571 ptr = scanDirtyCards(dirty, limit, ctx);
575 assert((ptr > dirty) && (ptr < limit));