Home | History | Annotate | Download | only in flip_server

Lines Matching refs:storage_

20     delete[] storage_;
28 iterator begin() { return storage_ + read_idx_; }
29 const_iterator begin() const { return storage_ + read_idx_; }
31 iterator end() { return storage_ + write_idx_; }
32 const_iterator end() const { return storage_ + write_idx_; }
65 char* tmp = storage_;
66 storage_ = other->storage_;
67 other->storage_ = tmp;
83 char* storage_;