Searched defs:closest_limit (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/protobuf/src/google/protobuf/io/
H A Dcoded_stream.cc101 int closest_limit = min(current_limit_, total_bytes_limit_); local
102 if (closest_limit < total_bytes_read_) {
105 buffer_size_after_limit_ = total_bytes_read_ - closest_limit;
200 int closest_limit = min(current_limit_, total_bytes_limit_); local
201 int bytes_until_limit = closest_limit - total_bytes_read_;
205 total_bytes_read_ = closest_limit;
/external/protobuf/src/google/protobuf/io/
H A Dcoded_stream.cc79 int closest_limit = min(current_limit_, total_bytes_limit_); local
80 if (closest_limit < total_bytes_read_) {
83 buffer_size_after_limit_ = total_bytes_read_ - closest_limit;
176 int closest_limit = min(current_limit_, total_bytes_limit_); local
177 int bytes_until_limit = closest_limit - total_bytes_read_;
181 total_bytes_read_ = closest_limit;

Completed in 67 milliseconds