bits_t 676 gc.c bits_t wb_unprotected_bits[HEAP_PAGE_BITMAP_LIMIT]; bits_t 679 gc.c bits_t mark_bits[HEAP_PAGE_BITMAP_LIMIT]; bits_t 681 gc.c bits_t uncollectible_bits[HEAP_PAGE_BITMAP_LIMIT]; bits_t 682 gc.c bits_t marking_bits[HEAP_PAGE_BITMAP_LIMIT]; bits_t 686 gc.c #define GET_PAGE_BODY(x) ((struct heap_page_body *)((bits_t)(x) & ~(HEAP_PAGE_ALIGN_MASK))) bits_t 690 gc.c #define NUM_IN_PAGE(p) (((bits_t)(p) & HEAP_PAGE_ALIGN_MASK)/sizeof(RVALUE)) bits_t 693 gc.c #define BITMAP_BIT(p) ((bits_t)1 << BITMAP_OFFSET(p)) bits_t 3406 gc.c bits_t *bits, bitset; bits_t 4224 gc.c bits_t *uncollectible_bits = &page->uncollectible_bits[0]; bits_t 5291 gc.c bits_t *mark_bits = page->mark_bits; bits_t 5292 gc.c bits_t *wbun_bits = page->wb_unprotected_bits; bits_t 5298 gc.c bits_t bits = mark_bits[j] & wbun_bits[j]; bits_t 5630 gc.c bits_t *bits = &page->marking_bits[0]; bits_t 5700 gc.c bits_t bitset, bits[HEAP_PAGE_BITMAP_LIMIT]; bits_t 5701 gc.c bits_t *marking_bits = page->marking_bits; bits_t 5702 gc.c bits_t *uncollectible_bits = page->uncollectible_bits; bits_t 5703 gc.c bits_t *wb_unprotected_bits = page->wb_unprotected_bits;