/external/v8/src/ |
lithium-allocator-inl.h | 63 limit_(instr->TempCount()), 69 bool TempIterator::HasNext() { return current_ < limit_; } 79 while (start < limit_ && instr_->TempAt(start) == NULL) start++; 91 limit_(instr->InputCount()), 97 bool InputIterator::HasNext() { return current_ < limit_; } 112 while (start < limit_ && instr_->InputAt(start)->IsConstantOperand()) start++;
|
zone.cc | 41 limit_(0), 144 limit_ = keep->end(); 150 position_ = limit_ = 0; 162 ASSERT(position_ + size > limit_); 190 limit_ = segment->end(); 191 ASSERT(position_ <= limit_);
|
regexp-stack.h | 79 Address* limit_address() { return &(thread_local_.limit_); } 111 Address limit_; member in struct:v8::internal::RegExpStack::ThreadLocal 115 limit_ = reinterpret_cast<Address>(kMemoryTop);
|
regexp-stack.cc | 105 thread_local_.limit_ = new_memory + kStackLimitSlack * kPointerSize;
|
zone.h | 121 Address limit_; member in class:v8::internal::Zone
|
zone-inl.h | 58 if ((position_ += size) > limit_) result = NewExpand(size);
|
global-handles.cc | 249 limit_ = current_->nodes + kNodesPerChunk; 259 if (next_ < limit_) { 274 next_ = limit_ = NULL; 291 limit_ = new_nodes + kNodesPerChunk; 297 Node* limit_; member in class:v8::internal::GlobalHandles::Pool
|
lithium.h | 519 limit_(env != NULL ? env->values()->length() : 0), 525 return env_ != NULL && current_ < limit_; 545 while (start < limit_ && ShouldSkip(env_->values()->at(start))) { 552 int limit_; member in class:v8::internal::BASE_EMBEDDED
|
lithium-allocator.h | 172 int limit_; member in class:v8::internal::BASE_EMBEDDED 188 int limit_; member in class:v8::internal::BASE_EMBEDDED
|
frames.cc | 47 : limit_(frame->fp()), handler_(handler) { 55 return handler_ == NULL || handler_->address() > limit_; 63 const Address limit_; member in class:v8::internal::BASE_EMBEDDED [all...] |
spaces.h | 1469 Address limit_; member in class:v8::internal::SemiSpaceIterator [all...] |
spaces.cc | [all...] |
/external/protobuf/src/google/protobuf/io/ |
zero_copy_stream_impl.cc | 415 : 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_ = count [all...] |
zero_copy_stream_impl.h | 346 int64 limit_; // Decreases as we go, becomes negative if we overshoot. member in class:google::protobuf::io::LimitingInputStream
|
/external/chromium/base/ |
utf_offset_string_conversions.h | 62 : limit_(limit) {} 65 if (offset >= limit_) 69 size_t limit_; member in struct:LimitOffset
|
/external/oprofile/libregex/ |
op_regex.cpp | 80 regular_expression_replace::regular_expression_replace(size_t limit_, 83 limit(limit_),
|
/external/v8/src/x64/ |
deoptimizer-x64.cc | 67 : code_(code), table_(code), index_(-1), limit_(table_.length()) { 72 if (index_ >= limit_) { 84 ASSERT(index_ < limit_); 85 while (++index_ < limit_) { 100 int limit_;
|