Home | History | Annotate | Download | only in src

Lines Matching full:cell

128   inline MarkBit(CellType* cell, CellType mask, bool data_only)
129 : cell_(cell), mask_(mask), data_only_(data_only) { }
131 inline CellType* cell() { return cell_; }
220 MarkBit::CellType* cell = this->cells() + (index >> kBitsPerCellLog2);
221 return MarkBit(cell, mask, data_only);
238 void Print(uint32_t pos, uint32_t cell) {
239 if (cell == seq_type) {
246 if (IsSeq(cell)) {
249 seq_type = cell;
254 PrintWord(cell);
268 static bool IsSeq(uint32_t cell) { return cell == 0 || cell == 0xFFFFFFFF; }
2430 // Old space for all global object property cell objects
2434 // Creates a property cell space object with a maximum capacity.
2436 : FixedSpace(heap, max_capacity, id, JSGlobalPropertyCell::kSize, "cell")