Lines Matching defs:buffer_
113 : buffer_(buffer),
145 // Returns the number of bytes that would have been emitted to |buffer_|
154 // Emits one |ch| character into the |buffer_| and updates the |count_| of
159 // have been allocated for the |buffer_|.
162 buffer_[count_] = ch;
172 // Inserts |padding|-|len| bytes worth of padding into the |buffer_|.
176 // Returns "false", iff the the |buffer_| filled up (i.e. |count_|
221 // Returns "false", if the |buffer_| overflowed at any time.
251 // at |buffer_| + |count_|, but could be before that if truncation
253 // successfully placed into the |buffer_|.
259 return buffer_ + idx;
263 char* buffer_;
354 // memmove(buffer_ + start, buffer_ + start + 1, size_ - start - 1)
355 for (char* move = buffer_ + start, *end = buffer_ + size_ - 1;
414 char* front = buffer_ + start;