Searched refs:limit_ (Results 1 - 13 of 13) sorted by relevance

/external/protobuf/src/google/protobuf/io/
H A Dzero_copy_stream_impl.cc415 : input_(input), limit_(limit) {}
419 if (limit_ < 0) input_->BackUp(-limit_);
423 if (limit_ <= 0) return false;
426 limit_ -= *size;
427 if (limit_ < 0) {
429 *size += limit_;
435 if (limit_ < 0) {
436 input_->BackUp(count - limit_);
437 limit_
[all...]
H A Dzero_copy_stream_impl.h346 int64 limit_; // Decreases as we go, becomes negative if we overshoot. member in class:google::protobuf::io::LimitingInputStream
/external/v8/src/
H A Dregexp-stack.h64 static Address* limit_address() { return &(thread_local_.limit_); }
93 limit_(reinterpret_cast<Address>(kMemoryTop)) {}
97 Address limit_; member in struct:v8::internal::RegExpStack::ThreadLocal
H A Dzone.cc37 Address Zone::limit_ = 0; member in class:v8::internal::Zone
141 limit_ = keep->end();
147 position_ = limit_ = 0;
159 ASSERT(position_ + size > limit_);
187 limit_ = segment->end();
188 ASSERT(position_ <= limit_);
H A Dregexp-stack.cc95 thread_local_.limit_ = new_memory + kStackLimitSlack * kPointerSize;
H A Dscanner.h45 if (cursor_ <= limit_ &&
56 limit_ = ComputeLimit(data_, kInitialCapacity);
72 char* limit_; member in class:v8::internal::UTF8Buffer
76 return static_cast<int>(limit_ - data_) + unibrow::Utf8::kMaxEncodedSize;
H A Dglobal-handles.cc222 limit_ = current_->nodes + kNodesPerChunk;
226 if (next_ < limit_) {
241 next_ = limit_ = NULL;
258 limit_ = new_nodes + kNodesPerChunk;
264 Node* limit_; member in class:v8::internal::BASE_EMBEDDED
H A Dzone.h112 static Address limit_; member in class:v8::internal::Zone
H A Dframes.cc45 : limit_(frame->fp()), handler_(handler) {
53 return handler_ == NULL || handler_->address() > limit_;
61 const Address limit_; member in class:v8::internal::BASE_EMBEDDED
H A Dscanner.cc52 UTF8Buffer::UTF8Buffer() : data_(NULL), limit_(NULL) { }
62 if (cursor_ > limit_) {
72 limit_ = ComputeLimit(new_data, new_capacity);
H A Dzone-inl.h46 if ((position_ += size) > limit_) result = NewExpand(size);
H A Dspaces.h1224 if (current_ == limit_) return NULL;
1245 Address limit_; member in class:v8::internal::SemiSpaceIterator
H A Dspaces.cc1330 limit_ = end;

Completed in 80 milliseconds