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

  /external/compiler-rt/lib/sanitizer_common/
sanitizer_addrhashmap.h 83 Cell *cell_; member in class:__sanitizer::AddrHashMap::Handle
136 return &cell_->val;
146 return cell_ != nullptr;
163 h->cell_ = nullptr;
178 h->cell_ = c;
192 h->cell_ = c;
208 h->cell_ = c;
225 h->cell_ = c;
247 h->cell_ = c;
280 h->cell_ = c
    [all...]
  /external/v8/src/heap/
marking.h 17 inline MarkBit(CellType* cell, CellType mask) : cell_(cell), mask_(mask) {}
21 return cell_ == other.cell_ && mask_ == other.mask_;
26 inline CellType* cell() { return cell_; }
32 return MarkBit(cell_ + 1, 1);
34 return MarkBit(cell_, new_mask);
38 inline void Set() { *cell_ |= mask_; }
39 inline bool Get() { return (*cell_ & mask_) != 0; }
40 inline void Clear() { *cell_ &= ~mask_; }
42 CellType* cell_; member in class:v8::internal::MarkBit
    [all...]

Completed in 694 milliseconds