Home
last modified time | relevance | path

Searched refs:utf8_pos_ (Results 1 – 1 of 1) sorted by relevance

/third_party/node/deps/v8/src/logging/
Dlog.cc127 void Reset() { utf8_pos_ = 0; } in Reset()
161 size = std::min(size, kUtf8BufferSize - utf8_pos_); in AppendBytes()
162 MemCopy(utf8_buffer_ + utf8_pos_, bytes, size); in AppendBytes()
163 utf8_pos_ += size; in AppendBytes()
173 if (utf8_pos_ >= kUtf8BufferSize) return; in AppendByte()
174 utf8_buffer_[utf8_pos_++] = c; in AppendByte()
178 int space = kUtf8BufferSize - utf8_pos_; in AppendInt()
180 base::Vector<char> buffer(utf8_buffer_ + utf8_pos_, space); in AppendInt()
182 if (size > 0 && utf8_pos_ + size <= kUtf8BufferSize) { in AppendInt()
183 utf8_pos_ += size; in AppendInt()
[all …]