Searched defs:MarkBit (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/v8/src/
H A Dspaces.h123 class MarkBit { class in namespace:v8::internal
127 inline MarkBit(CellType* cell, CellType mask, bool data_only) function in class:v8::internal::MarkBit
134 bool operator==(const MarkBit& other) {
145 inline MarkBit Next() {
148 return MarkBit(cell_ + 1, 1, data_only_);
150 return MarkBit(cell_, new_mask, data_only_);
160 // at the place where the MarkBit object is created.
190 return sizeof(MarkBit::CellType) * cells_count;
205 INLINE(MarkBit::CellType* cells()) {
206 return reinterpret_cast<MarkBit
[all...]
/external/v8/src/
H A Dspaces.h124 class MarkBit { class in namespace:v8::internal
128 inline MarkBit(CellType* cell, CellType mask, bool data_only) function in class:v8::internal::MarkBit
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
[all...]

Completed in 2581 milliseconds