Searched refs:cell_ (Results 1 – 2 of 2) sorted by relevance
83 Cell *cell_; variable136 return &cell_->val;146 return cell_ != nullptr; in exists()163 h->cell_ = nullptr; in acquire()178 h->cell_ = c; in acquire()192 h->cell_ = c; in acquire()208 h->cell_ = c; in acquire()225 h->cell_ = c; in acquire()247 h->cell_ = c; in acquire()280 h->cell_ = c; in acquire()[all …]
17 inline MarkBit(CellType* cell, CellType mask) : cell_(cell), mask_(mask) {} in MarkBit()21 return cell_ == other.cell_ && mask_ == other.mask_;26 inline CellType* cell() { return cell_; } in cell()32 return MarkBit(cell_ + 1, 1); in Next()34 return MarkBit(cell_, new_mask); in Next()38 inline void Set() { *cell_ |= mask_; } in Set()39 inline bool Get() { return (*cell_ & mask_) != 0; } in Get()40 inline void Clear() { *cell_ &= ~mask_; } in Clear()42 CellType* cell_; variable