CellType 2052 src/mark-compact.cc MarkBit::CellType* cells = p->markbits()->cells(); CellType 2073 src/mark-compact.cc const MarkBit::CellType current_cell = cells[cell_index]; CellType 2076 src/mark-compact.cc const MarkBit::CellType next_cell = cells[cell_index + 1]; CellType 2077 src/mark-compact.cc MarkBit::CellType grey_objects = current_cell & CellType 2963 src/mark-compact.cc MarkBit::CellType* cells = p->markbits()->cells(); CellType 3127 src/mark-compact.cc MarkBit::CellType* cells = p->markbits()->cells(); CellType 3215 src/mark-compact.cc MarkBit::CellType* start_cell = start_mark_bit.cell(); CellType 3216 src/mark-compact.cc MarkBit::CellType* end_cell = end_mark_bit.cell(); CellType 3219 src/mark-compact.cc MarkBit::CellType start_mask = ~(start_mark_bit.mask() - 1); CellType 3220 src/mark-compact.cc MarkBit::CellType end_mask = (end_mark_bit.mask() << 1) - 1; CellType 3226 src/mark-compact.cc for (MarkBit::CellType* cell = start_cell + 1; cell < end_cell; cell++) { CellType 3232 src/mark-compact.cc for (MarkBit::CellType* cell = start_cell ; cell <= end_cell; cell++) { CellType 3782 src/mark-compact.cc MarkBit::CellType* cells = p->markbits()->cells(); CellType 128 src/spaces.h inline MarkBit(CellType* cell, CellType mask, bool data_only) CellType 131 src/spaces.h inline CellType* cell() { return cell_; } CellType 132 src/spaces.h inline CellType mask() { return mask_; } CellType 147 src/spaces.h CellType new_mask = mask_ << 1; CellType 156 src/spaces.h CellType* cell_; CellType 157 src/spaces.h CellType mask_; CellType 191 src/spaces.h return sizeof(MarkBit::CellType) * cells_count; CellType 206 src/spaces.h INLINE(MarkBit::CellType* cells()) { CellType 207 src/spaces.h return reinterpret_cast<MarkBit::CellType*>(this); CellType 219 src/spaces.h MarkBit::CellType mask = 1 << (index & kBitIndexMask); CellType 220 src/spaces.h MarkBit::CellType* cell = this->cells() + (index >> kBitsPerCellLog2);