Lines Matching refs:index
115 V8_INLINE static uint32_t IndexToCell(uint32_t index) {
116 return index >> kBitsPerCellLog2;
119 V8_INLINE static uint32_t IndexInCell(uint32_t index) {
120 return index & kBitIndexMask;
123 // Retrieves the cell containing the provided markbit index.
124 V8_INLINE static uint32_t CellAlignIndex(uint32_t index) {
125 return index & ~kBitIndexMask;
136 inline MarkBit MarkBitFromIndex(uint32_t index) {
137 MarkBit::CellType mask = 1u << IndexInCell(index);
138 MarkBit::CellType* cell = this->cells() + (index >> kBitsPerCellLog2);