HomeSort by relevance Sort by last modified time
    Searched refs:limit_ (Results 1 - 25 of 47) sorted by null

1 2

  /external/chromium_org/third_party/tcmalloc/chromium/src/
raw_printer.cc 44 limit_(buf + length - 1) {
47 *limit_ = '\0';
51 if (limit_ > ptr_) {
54 int avail = limit_ - ptr_;
61 ptr_ = limit_;
64 ptr_ = limit_;
raw_printer.h 62 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/
raw_printer.cc 44 limit_(buf + length - 1) {
47 *limit_ = '\0';
51 if (limit_ > ptr_) {
54 int avail = limit_ - ptr_;
61 ptr_ = limit_;
64 ptr_ = limit_;
raw_printer.h 62 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/
lithium-inl.h 32 : 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_) {
regexp-stack.h 56 Address* limit_address() { return &(thread_local_.limit_); }
89 Address limit_; member in struct:v8::internal::RegExpStack::ThreadLocal
93 limit_ = reinterpret_cast<Address>(kMemoryTop);
zone.cc 51 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_);
regexp-stack.cc 81 thread_local_.limit_ = new_memory + kStackLimitSlack * kPointerSize;
lithium.h 542 limit_(env != NULL ? env->values()->length() : 0),
547 bool Done() { return current_ >= limit_; }
570 while (current_ < limit_ && ShouldSkip(env_->values()->at(current_))) {
576 int limit_; member in class:v8::internal::BASE_EMBEDDED
795 int limit_; member in class:v8::internal::BASE_EMBEDDED
811 int limit_; member in class:v8::internal::BASE_EMBEDDED
  /external/chromium_org/third_party/libvpx/source/libvpx/test/
y4m_video_source.h 29 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
i420_video_source.h 32 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
video_source.h 137 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
y4m_test.cc 85 limit_ = limit;
120 for (unsigned int i = start_; i < limit_; i++) {
168 for (unsigned int i = start_; i < limit_; i++) {
  /external/libvpx/libvpx/test/
y4m_video_source.h 29 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
i420_video_source.h 32 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
video_source.h 87 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/ots/include/
ots-memory-stream.h 51 : 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/chromium_org/third_party/protobuf/src/google/protobuf/io/
zero_copy_stream_impl.cc 416 : 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_ = count
    [all...]
  /external/chromium_org/base/strings/
utf_offset_string_conversions.h 114 : limit_(limit) {}
117 if (offset > limit_)
121 size_t limit_; member in struct:base::LimitOffset
  /external/chromium_org/v8/src/heap/
store-buffer-inl.h 26 DCHECK(top == limit_);
29 DCHECK(top < limit_);
store-buffer.cc 19 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/
download_query.h 121 void Limit(size_t limit) { limit_ = limit; }
149 size_t limit_; member in class:DownloadQuery
  /art/runtime/gc/space/
space.h 260 return limit_;
270 limit_ = limit;
306 Space(name, gc_retention_policy), begin_(begin), end_(end), limit_(limit) {
316 byte* limit_; member in class:art::gc::space::ContinuousSpace
  /external/chromium_org/v8/src/base/platform/
condition-variable-unittest.cc 228 limit_(limit),
241 while (count % thread_count_ != rem_ && count < limit_) {
245 if (count >= limit_) break;
260 const int limit_; member in class:v8::base::__anon21866::FINAL
  /art/compiler/utils/
assembler.cc 42 limit_ = ComputeLimit(contents_, kInitialBufferCapacity);
99 limit_ = ComputeLimit(new_contents, new_capacity);

Completed in 695 milliseconds

1 2