Home
last modified time | relevance | path

Searched refs:buffer_end_ (Results 1 - 7 of 7) sorted by relevance

/third_party/backends/backend/genesys/
H A Drow_buffer.h67 return last_ == buffer_end_; in full()
95 } else if (first_ == buffer_end_) { in pop_front()
109 first_ = buffer_end_; in push_front()
120 last_ = buffer_end_; in pop_back()
137 if (last_ == buffer_end_) { in push_back()
149 return last_ + buffer_end_ - first_; in height()
154 std::size_t height_capacity() const { return buffer_end_; } in height_capacity()
165 if (index >= buffer_end_ - first_) { in get_row_index()
166 return index - (buffer_end_ - first_); in get_row_index()
177 buffer_end_ in ensure_capacity()
184 std::size_t buffer_end_ = 0; global() member in genesys::RowBuffer
[all...]
/third_party/protobuf/src/google/protobuf/io/
H A Dcoded_stream.cc99 buffer_end_ = buffer_; in BackUpInputToCurrentPosition()
106 buffer_end_ += buffer_size_after_limit_; in RecomputeBufferLimits()
112 buffer_end_ -= buffer_size_after_limit_; in RecomputeBufferLimits()
211 buffer_end_ = buffer_; in SkipFallback()
461 (buffer_end_ > buffer_ && !(buffer_end_[-1] & 0x80))) { in ReadVarint32Fallback()
491 (buffer_end_ > buffer_ && !(buffer_end_[-1] & 0x80))) { in ReadVarintSizeAsIntFallback()
506 if (buffer_ == buffer_end_) { in ReadTagSlow()
536 (buf_size > 0 && !(buffer_end_[ in ReadTagFallback()
[all...]
H A Dcoded_stream.h539 const uint8* buffer_end_; // pointer to the end of the buffer. member in google::protobuf::io::CodedInputStream
670 buffer_end_(nullptr), in EpsCopyOutputStream()
827 uint8* buffer_end_ = buffer_; member in google::protobuf::io::EpsCopyOutputStream
949 buffer_end_ = nullptr; in SetInitialBuffer()
953 buffer_end_ = ptr; in SetInitialBuffer()
1278 if (PROTOBUF_PREDICT_TRUE(buffer_ < buffer_end_)) { in ReadVarint32()
1292 if (PROTOBUF_PREDICT_TRUE(buffer_ < buffer_end_) && *buffer_ < 0x80) { in ReadVarint64()
1303 if (PROTOBUF_PREDICT_TRUE(buffer_ < buffer_end_)) { in ReadVarintSizeAsInt()
1377 if (PROTOBUF_PREDICT_TRUE(buffer_ < buffer_end_)) { in ReadTagNoLastTag()
1394 if (PROTOBUF_PREDICT_TRUE(buffer_ < buffer_end_)) { in ReadTagWithCutoffNoLastTag()
[all...]
/third_party/protobuf/src/google/protobuf/
H A Dparse_context.cc107 buffer_end_ = next_chunk_ + size_ - kSlopBytes; in Next()
116 std::memmove(buffer_, buffer_end_, kSlopBytes); in Next()
127 buffer_end_ = buffer_ + kSlopBytes; in Next()
133 buffer_end_ = buffer_ + size_; in Next()
148 aliasing_ = reinterpret_cast<std::uintptr_t>(buffer_end_) - in Next()
152 buffer_end_ = buffer_ + kSlopBytes; in Next()
160 int overrun = ptr - buffer_end_; in DoneFallback()
168 // limit_end_ = buffer_end_ + (std::min)(0, limit_); in DoneFallback()
170 GOOGLE_DCHECK(limit_end_ == buffer_end_ + (std::min)(0, limit_)); in DoneFallback()
173 GOOGLE_DCHECK(limit_end_ == buffer_end_); // becaus in DoneFallback()
[all...]
H A Dparse_context.h116 GOOGLE_DCHECK(ptr <= buffer_end_ + kSlopBytes); in BackUp()
119 count = static_cast<int>(buffer_end_ + kSlopBytes - ptr); in BackUp()
121 count = size_ + static_cast<int>(buffer_end_ - ptr); in BackUp()
130 // ptr - buffer_end_ <= kSlopBytes. in PushLimit()
131 limit += static_cast<int>(ptr - buffer_end_); in PushLimit()
132 limit_end_ = buffer_end_ + (std::min)(0, limit); in PushLimit()
143 limit_end_ = buffer_end_ + (std::min)(0, limit_); in PopLimit()
148 if (size <= buffer_end_ + kSlopBytes - ptr) { in Skip()
155 if (size <= buffer_end_ + kSlopBytes - ptr) { in ReadString()
163 if (size <= buffer_end_ in AppendString()
252 const char* buffer_end_; global() member in google::protobuf::internal::EpsCopyInputStream
[all...]
/third_party/node/deps/v8/src/parsing/
H A Dscanner-character-streams.cc263 buffer_end_ = buffer_start_;
269 buffer_end_ = &buffer_[length];
316 buffer_end_ = range.end;
321 DCHECK_LE(buffer_start_, buffer_end_);
362 buffer_end_ = range.end; in UpdateBufferPointers()
403 buffer_end_ = buffer_ + FillBuffer(position); in ReadBlock()
405 DCHECK_LE(buffer_end_, buffer_start_ + kBufferSize); in ReadBlock()
406 return buffer_cursor_ < buffer_end_; in ReadBlock()
482 buffer_end_ = buffer_start_;
489 buffer_end_
[all...]
H A Dscanner.h47 buffer_cursor_ = buffer_end_; in set_parser_error()
54 if (V8_LIKELY(buffer_cursor_ < buffer_end_)) { in Peek()
78 std::find_if(buffer_cursor_, buffer_end_, [&check](uint16_t raw_c0_) { in AdvanceUntil()
83 if (next_cursor_pos == buffer_end_) { in AdvanceUntil()
84 buffer_cursor_ = buffer_end_; in AdvanceUntil()
100 // buffer_start_ .. buffer_end_ will be handles locally. in Back()
115 pos < (buffer_pos_ + (buffer_end_ - buffer_start_)))) { in Seek()
149 buffer_end_(buffer_end), in Utf16CharacterStream()
159 position >= buffer_pos_ + (buffer_end_ - buffer_start_)); in ReadBlockChecked()
167 DCHECK_LE(buffer_cursor_, buffer_end_); in ReadBlockChecked()
204 const uint16_t* buffer_end_; global() member in v8::internal::Utf16CharacterStream
[all...]

Completed in 8 milliseconds