HomeSort by relevance Sort by last modified time
    Searched defs:MarkBit (Results 1 - 2 of 2) sorted by null

  /external/v8/src/
spaces.h 124 class MarkBit {
128 inline MarkBit(CellType* cell, CellType mask, bool data_only)
135 bool operator==(const MarkBit& other) {
146 inline MarkBit Next() {
149 return MarkBit(cell_ + 1, 1, data_only_);
151 return MarkBit(cell_, new_mask, data_only_);
161 // at the place where the MarkBit object is created.
191 return sizeof(MarkBit::CellType) * cells_count;
206 INLINE(MarkBit::CellType* cells()) {
207 return reinterpret_cast<MarkBit::CellType*>(this)
    [all...]
  /external/chromium_org/v8/src/
spaces.h 122 class MarkBit {
126 inline MarkBit(CellType* cell, CellType mask, bool data_only)
133 bool operator==(const MarkBit& other) {
144 inline MarkBit Next() {
147 return MarkBit(cell_ + 1, 1, data_only_);
149 return MarkBit(cell_, new_mask, data_only_);
159 // at the place where the MarkBit object is created.
189 return sizeof(MarkBit::CellType) * cells_count;
204 INLINE(MarkBit::CellType* cells()) {
205 return reinterpret_cast<MarkBit::CellType*>(this)
    [all...]

Completed in 253 milliseconds