Home | History | Annotate | Download | only in src

Lines Matching defs:w_

60     Slot(Writer* w, uintptr_t offset) : w_(w), offset_(offset) { }
63 return w_->RawSlotAt<T>(offset_);
67 *w_->RawSlotAt<T>(offset_) = value;
71 return Slot<T>(w_, offset_ + sizeof(T) * i);
75 Writer* w_;