Home | History | Annotate | Download | only in src

Lines Matching defs:w_

77     Slot(Writer* w, uintptr_t offset) : w_(w), offset_(offset) { }
80 return w_->RawSlotAt<T>(offset_);
84 *w_->RawSlotAt<T>(offset_) = value;
88 return Slot<T>(w_, offset_ + sizeof(T) * i);
92 Writer* w_;