Home | History | Annotate | Download | only in utils

Lines Matching defs:contents_

188     return *reinterpret_cast<T*>(contents_ + position);
193 *reinterpret_cast<T*>(contents_ + position) = value;
201 memmove(contents_ + newposition, contents_ + oldposition, nbytes);
235 CHECK_GE(cursor_, contents_);
236 return cursor_ - contents_;
239 byte* contents() const { return contents_; }
311 int GetPosition() { return cursor_ - contents_; }
319 byte* contents_;
333 CHECK_GE(limit_, contents_);
334 return (limit_ - contents_) + kMinimumGap;