Lines Matching defs:cells
93 // Bitmap is a sequence of cells each containing fixed number of bits.
128 V8_INLINE MarkBit::CellType* cells() {
138 MarkBit::CellType* cell = this->cells() + (index >> kBitsPerCellLog2);
159 // atomic, the cells at the boundary of the range are updated with atomic
160 // compare and swap operation. The inner cells are updated with relaxed write.
164 // atomic, the cells at the boundary of the range are updated with atomic
165 // compare and swap operation. The inner cells are updated with relaxed write.
195 base::Atomic32* cell_base = reinterpret_cast<base::Atomic32*>(cells());
205 cells()[i] = 0;
212 base::Atomic32* cell_base = reinterpret_cast<base::Atomic32*>(cells());
222 cells()[i] = 0xffffffff;
249 cells()[cell_index] |= mask;
255 base::AsAtomic32::SetBits(cells() + cell_index, mask, mask);
261 cells()[cell_index] &= ~mask;
267 base::AsAtomic32::SetBits(cells() + cell_index, 0u, mask);
286 // Then fill all in between cells with 1s.
317 // Then fill all in between cells with 0s.