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

12

/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Draw_printer.cc44 limit_(buf + length - 1) {
47 *limit_ = '\0';
51 if (limit_ > ptr_) {
54 int avail = limit_ - ptr_;
61 ptr_ = limit_;
64 ptr_ = limit_;
H A Draw_printer.h62 int space_left() const { return (limit_ - ptr_); }
74 // We can write into [ptr_ .. limit_-1].
75 // *limit_ is also writable, but reserved for a terminating \0
79 // Invariants: *limit_ == \0
82 char* limit_; // One past last non-\0 char we can write member in class:base::RawPrinter
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Draw_printer.cc44 limit_(buf + length - 1) {
47 *limit_ = '\0';
51 if (limit_ > ptr_) {
54 int avail = limit_ - ptr_;
61 ptr_ = limit_;
64 ptr_ = limit_;
H A Draw_printer.h62 int space_left() const { return (limit_ - ptr_); }
74 // We can write into [ptr_ .. limit_-1].
75 // *limit_ is also writable, but reserved for a terminating \0
79 // Invariants: *limit_ == \0
82 char* limit_; // One past last non-\0 char we can write member in class:base::RawPrinter
/external/chromium_org/v8/src/
H A Dlithium-inl.h32 : instr_(instr), limit_(instr->TempCount()), current_(0) {
37 bool TempIterator::Done() { return current_ >= limit_; }
47 while (current_ < limit_ && instr_->TempAt(current_) == NULL) ++current_;
58 : instr_(instr), limit_(instr->InputCount()), current_(0) {
63 bool InputIterator::Done() { return current_ >= limit_; }
80 while (current_ < limit_) {
H A Dregexp-stack.h56 Address* limit_address() { return &(thread_local_.limit_); }
89 Address limit_; member in struct:v8::internal::RegExpStack::ThreadLocal
93 limit_ = reinterpret_cast<Address>(kMemoryTop);
H A Dzone.cc51 limit_(0),
87 if (size_with_redzone > limit_ - position_) {
142 limit_ = keep->end();
150 position_ = limit_ = 0;
205 DCHECK(size > limit_ - position_);
253 limit_ = segment->end();
254 DCHECK(position_ <= limit_);
H A Dregexp-stack.cc81 thread_local_.limit_ = new_memory + kStackLimitSlack * kPointerSize;
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Di420_video_source.h32 limit_(limit),
67 virtual vpx_image_t *img() const { return (frame_ < limit_) ? img_ : NULL; }
81 virtual unsigned int limit() const { return limit_; }
98 limit_ = frame_;
108 unsigned int limit_; member in class:libvpx_test::I420VideoSource
H A Dy4m_video_source.h29 limit_(limit),
71 return (frame_ < limit_) ? img_.get() : NULL;
86 virtual unsigned int limit() const { return limit_; }
108 unsigned int limit_; member in class:libvpx_test::Y4mVideoSource
H A Dvideo_source.h137 DummyVideoSource() : img_(NULL), limit_(100), width_(0), height_(0) {
154 return (frame_ < limit_) ? img_ : NULL;
169 virtual unsigned int limit() const { return limit_; }
172 limit_ = limit;
190 unsigned int limit_; member in class:libvpx_test::DummyVideoSource
H A Dy4m_test.cc85 limit_ = limit;
120 for (unsigned int i = start_; i < limit_; i++) {
168 for (unsigned int i = start_; i < limit_; i++) {
/external/chromium_org/third_party/ots/include/
H A Dots-memory-stream.h51 : length_(initial), limit_(limit), off_(0) {
66 if (length_ == limit_)
71 if (new_length > limit_)
72 new_length = limit_;
99 const size_t limit_; member in class:ots::ExpandingMemoryStream
/external/libvpx/libvpx/test/
H A Di420_video_source.h32 limit_(limit),
67 virtual vpx_image_t *img() const { return (frame_ < limit_) ? img_ : NULL; }
81 virtual unsigned int limit() const { return limit_; }
98 limit_ = frame_;
108 unsigned int limit_; member in class:libvpx_test::I420VideoSource
H A Dy4m_video_source.h29 limit_(limit),
65 return (frame_ < limit_) ? img_.get() : NULL;
80 virtual unsigned int limit() const { return limit_; }
102 unsigned int limit_; member in class:libvpx_test::Y4mVideoSource
H A Dvideo_source.h87 DummyVideoSource() : img_(NULL), limit_(100), width_(0), height_(0) {
104 return (frame_ < limit_) ? img_ : NULL;
119 virtual unsigned int limit() const { return limit_; }
136 unsigned int limit_; member in class:libvpx_test::DummyVideoSource
/external/chromium_org/third_party/protobuf/src/google/protobuf/io/
H A Dzero_copy_stream_impl.cc416 : input_(input), limit_(limit) {}
420 if (limit_ < 0) input_->BackUp(-limit_);
424 if (limit_ <= 0) return false;
427 limit_ -= *size;
428 if (limit_ < 0) {
430 *size += limit_;
436 if (limit_ < 0) {
437 input_->BackUp(count - limit_);
438 limit_
[all...]
/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...]
/external/chromium_org/base/strings/
H A Dutf_offset_string_conversions.h114 : limit_(limit) {}
117 if (offset > limit_)
121 size_t limit_; member in struct:base::LimitOffset
/external/chromium_org/v8/src/heap/
H A Dstore-buffer-inl.h26 DCHECK(top == limit_);
29 DCHECK(top < limit_);
H A Dstore-buffer.cc19 limit_(NULL),
42 limit_ = start_ + (kStoreBufferSize / kPointerSize);
63 DCHECK(reinterpret_cast<Address>(limit_) >= virtual_memory_->address());
68 DCHECK(limit_ <= vm_limit);
70 DCHECK((reinterpret_cast<uintptr_t>(limit_) & kStoreBufferOverflowBit) != 0);
71 DCHECK((reinterpret_cast<uintptr_t>(limit_ - 1) & kStoreBufferOverflowBit) ==
93 start_ = limit_ = NULL;
535 DCHECK(top <= limit_);
/external/chromium_org/chrome/browser/download/
H A Ddownload_query.h121 void Limit(size_t limit) { limit_ = limit; }
149 size_t limit_; member in class:DownloadQuery
H A Ddownload_query.cc241 : limit_(kuint32max) {
437 results->begin() + std::min(limit_, results->size()),
440 if (results->size() > limit_)
441 results->resize(limit_);
/external/chromium_org/v8/src/base/platform/
H A Dcondition-variable-unittest.cc228 limit_(limit),
241 while (count % thread_count_ != rem_ && count < limit_) {
245 if (count >= limit_) break;
260 const int limit_; member in class:v8::base::__anon17248::FINAL
/external/chromium_org/ui/file_manager/file_manager/common/js/
H A Dasync_util.js55 this.limit_ = limit;
125 this.pendingTasks_.length <= this.limit_,
128 if (this.pendingTasks_.length >= this.limit_)

Completed in 649 milliseconds

12