Home | History | Annotate | Download | only in src

Lines Matching refs:w_

58     Slot(Writer* w, uintptr_t offset) : w_(w), offset_(offset) { }
61 return w_->RawSlotAt<T>(offset_);
65 *w_->RawSlotAt<T>(offset_) = value;
69 return Slot<T>(w_, offset_ + sizeof(T) * i);
73 Writer* w_;