HomeSort by relevance Sort by last modified time
    Searched defs:mask_ (Results 26 - 26 of 26) sorted by null

12

  /external/v8/src/heap/
spaces.h 117 inline MarkBit(CellType* cell, CellType mask) : cell_(cell), mask_(mask) {}
121 return cell_ == other.cell_ && mask_ == other.mask_;
127 inline CellType mask() { return mask_; }
130 CellType new_mask = mask_ << 1;
138 inline void Set() { *cell_ |= mask_; }
139 inline bool Get() { return (*cell_ & mask_) != 0; }
140 inline void Clear() { *cell_ &= ~mask_; }
143 CellType mask_; member in class:v8::internal::MarkBit
    [all...]

Completed in 582 milliseconds

12