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

1 2 3

  /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/media/tools/shader_bench/
window.cc 11 limit_(0),
window.h 45 int limit_; member in class:media::Window
window_linux.cc 47 limit_ = limit;
69 if (count_ < limit_) {
  /external/v8/src/
lithium-allocator-inl.h 63 limit_(instr->TempCount()),
69 bool TempIterator::Done() { return current_ >= limit_; }
79 while (current_ < limit_ && instr_->TempAt(current_) == NULL) ++current_;
91 limit_(instr->InputCount()),
97 bool InputIterator::Done() { return current_ >= limit_; }
113 while (current_ < limit_ && instr_->InputAt(current_)->IsConstantOperand()) {
regexp-stack.h 79 Address* limit_address() { return &(thread_local_.limit_); }
112 Address limit_; member in struct:v8::internal::RegExpStack::ThreadLocal
116 limit_ = reinterpret_cast<Address>(kMemoryTop);
zone.cc 74 limit_(0),
145 limit_ = keep->end();
151 position_ = limit_ = 0;
171 ASSERT(size > limit_ - position_);
210 limit_ = segment->end();
211 ASSERT(position_ <= limit_);
store-buffer-inl.h 48 ASSERT(top == limit_);
51 ASSERT(top < limit_);
  /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/libvpx/libvpx/test/
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 68 DummyVideoSource() : img_(NULL), limit_(100), width_(0), height_(0) {
85 return (frame_ < limit_) ? img_ : NULL;
100 virtual unsigned int limit() const { return limit_; }
117 unsigned int limit_; member in class:libvpx_test::DummyVideoSource
  /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/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...]
  /external/chromium_org/v8/src/
lithium-allocator-inl.h 63 limit_(instr->TempCount()),
69 bool TempIterator::Done() { return current_ >= limit_; }
79 while (current_ < limit_ && instr_->TempAt(current_) == NULL) ++current_;
91 limit_(instr->InputCount()),
97 bool InputIterator::Done() { return current_ >= limit_; }
114 while (current_ < limit_) {
regexp-stack.h 79 Address* limit_address() { return &(thread_local_.limit_); }
112 Address limit_; member in struct:v8::internal::RegExpStack::ThreadLocal
116 limit_ = reinterpret_cast<Address>(kMemoryTop);
zone.cc 74 limit_(0),
122 limit_ = keep->end();
128 position_ = limit_ = 0;
181 ASSERT(size > limit_ - position_);
220 limit_ = segment->end();
221 ASSERT(position_ <= limit_);
store-buffer-inl.h 48 ASSERT(top == limit_);
51 ASSERT(top < limit_);
  /external/chromium_org/base/strings/
utf_offset_string_conversions.h 51 : limit_(limit) {}
54 if (offset >= limit_)
58 size_t limit_; member in struct:base::LimitOffset
  /external/chromium/base/
utf_offset_string_conversions.h 62 : limit_(limit) {}
65 if (offset >= limit_)
69 size_t limit_; member in struct:LimitOffset
  /external/chromium_org/ash/system/session_length_limit/
tray_session_length_limit.h 62 base::TimeDelta limit_; member in class:ash::internal::TraySessionLengthLimit
  /art/compiler/utils/
assembler.cc 39 limit_ = ComputeLimit(contents_, kInitialBufferCapacity);
96 limit_ = ComputeLimit(new_contents, new_capacity);
  /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

Completed in 1891 milliseconds

1 2 3