HomeSort by relevance Sort by last modified time
    Searched defs:capacity_ (Results 1 - 25 of 37) sorted by null

1 2

  /external/chromium_org/net/quic/
quic_data_writer.h 65 return capacity_;
75 size_t capacity_; // Allocation size of payload (or -1 if buffer is const). member in class:net::QuicDataWriter
quic_data_writer.cc 21 capacity_(size),
32 capacity_ = 0;
121 if (length_ > capacity_) {
125 if (capacity_ - length_ < length) {
161 DCHECK_LE(length_, capacity_);
162 if (length_ > capacity_) {
165 memset(buffer_ + length_, 0x00, capacity_ - length_);
166 length_ = capacity_;
170 if (offset >= capacity_) {
171 LOG(DFATAL) << "offset: " << offset << " >= capacity: " << capacity_; local
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_device/android/
single_rw_fifo.h 35 int capacity() const { return capacity_; }
39 int capacity_; member in class:webrtc::SingleRwFifo
  /external/chromium_org/chrome/browser/thumbnails/
thumbnail_service_unittest.cc 20 capacity_(1) {
25 return known_url_map_.size() >= capacity_;
53 const size_t capacity_; member in class:MockTopSites
  /external/chromium_org/media/filters/
h264_bitstream_buffer.h 109 size_t capacity_; member in class:media::H264BitstreamBuffer
audio_renderer_algorithm.h 62 int QueueCapacity() const { return capacity_; }
129 int capacity_; member in class:media::AudioRendererAlgorithm
  /external/chromium_org/third_party/icu/source/common/unicode/
bytestream.h 214 const int32_t capacity_; member in class:CheckedArrayByteSink
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
audio_vector.h 28 capacity_(kDefaultInitialSize) {}
34 capacity_(initial_size) {
114 size_t capacity_; // Allocated number of samples in the array. member in class:webrtc::AudioVector
  /external/icu/icu4c/source/common/unicode/
bytestream.h 214 const int32_t capacity_; member in class:CheckedArrayByteSink
  /frameworks/base/media/mca/filterfw/native/core/
native_frame.h 63 return capacity_;
77 int capacity_; member in class:android::filterfw::NativeFrame
  /bionic/libc/bionic/
scandir.cpp 28 ScandirResult() : names_(NULL), size_(0), capacity_(0) {
45 size_ = capacity_ = 0;
50 if (size_ >= capacity_) {
51 size_t new_capacity = capacity_ + 32;
57 capacity_ = new_capacity;
78 size_t capacity_; member in class:ScandirResult
  /external/chromium_org/net/spdy/
spdy_frame_builder.h 53 // capacity_. The given type must be a control frame type.
60 // information from the |framer| and length information from capacity_.
67 // capacity_. The given type must be a control frame type.
82 capacity_ = 0;
143 size_t capacity_; // Allocation size of payload, set by constructor. member in class:net::SpdyFrameBuilder
  /external/chromium_org/net/websockets/
websocket_inflater.h 85 const size_t capacity_; member in class:net::WebSocketInflater::OutputBuffer
111 const size_t capacity_; member in class:net::WebSocketInflater::InputQueue
websocket_inflater.cc 170 : capacity_(capacity),
171 buffer_(capacity_ + 1), // 1 for sentinel
184 std::min(capacity_ - Size(), buffer_.size() - tail_));
218 DCHECK_LE(advance + Size(), capacity_);
223 : capacity_(capacity), head_of_first_buffer_(0), tail_of_last_buffer_(0) {}
234 capacity_ - head_of_first_buffer_);
246 DCHECK(IsEmpty() || tail_of_last_buffer_ == capacity_); local
248 buffers_.push_back(new IOBufferWithSize(capacity_));
257 DCHECK_LE(size + head_of_first_buffer_, capacity_);
260 if (head_of_first_buffer_ == capacity_) {
    [all...]
  /external/chromium_org/third_party/webrtc/base/
atomicops.h 64 capacity_(0),
69 capacity_(capacity),
76 if (capacity_ == 0) {
84 data_[pushed_count_ % capacity_] = value;
96 if (capacity_ == 0) {
104 *value_out = data_[popped_count_ % capacity_];
122 capacity_ = new_capacity;
129 int IsFull() const { return pushed_count_ == popped_count_ + capacity_; }
137 size_t capacity() const { return capacity_; }
142 size_t capacity_; member in class:rtc::FixedSizeLockFreeQueue
    [all...]
buffer.h 41 size_t capacity() const { return capacity_; }
73 if (capacity > capacity_) {
77 capacity_ = capacity;
85 buf->capacity_ = capacity_;
91 data_.reset(new char[capacity_ = capacity]);
97 size_t capacity_; member in class:rtc::Buffer
cryptstring.h 80 capacity_ = 32;
114 if (capacity_ >= n) {
118 size_t old_capacity = capacity_;
122 capacity_ *= 2;
123 if (capacity_ >= n)
127 storage_ = new char[capacity_];
142 if (capacity_) {
144 for (size_t i = 1; i < capacity_; i++) {
152 size_t capacity_; member in class:rtc::FormatCryptString
  /external/chromium_org/net/base/
io_buffer.h 195 int capacity() { return capacity_; }
208 int capacity_; member in class:net::GrowableIOBuffer
  /external/chromium_org/v8/src/
ostreams.h 74 OStringStream() : size_(0), capacity_(32), data_(allocate(capacity_)) {
77 ~OStringStream() { deallocate(data_, capacity_); }
80 size_t capacity() const { return capacity_; }
97 size_t capacity_; member in class:v8::internal::OStringStream
string-stream.h 82 capacity_(kInitialCapacity),
146 unsigned capacity_; member in class:v8::internal::FINAL
150 bool full() const { return (capacity_ - length_) == 1; }
151 int space() const { return capacity_ - length_; }
  /art/runtime/gc/accounting/
atomic_stack.h 59 return AtomicPushBackInternal(value, capacity_);
97 for (size_t i = 0; i < capacity_; ++i) {
152 return capacity_;
157 capacity_ = new_capacity;
189 capacity_(capacity),
213 mem_map_.reset(MemMap::MapAnonymous(name_.c_str(), NULL, capacity_ * sizeof(T),
233 // Current maximum which we can push back to, must be <= capacity_.
236 size_t capacity_; member in class:art::gc::accounting::AtomicStack
  /art/runtime/
indirect_reference_table.h 229 : table_(table), i_(i), capacity_(capacity) {
251 while (i_ < capacity_ &&
260 size_t capacity_; member in class:art::IrtIterator
  /external/chromium_org/third_party/android_crazy_linker/src/src/
crazy_linker_util.h 74 size_t capacity() const { return capacity_; }
130 capacity_ = 0;
137 size_t capacity_; member in class:crazy::String
149 Vector() : items_(0), count_(0), capacity_(0) {}
193 size_t capacity_; member in class:crazy::Vector
207 if (count_ >= capacity_)
208 Reserve(capacity_ + (capacity_ >> 1) + 4);
238 capacity_ = new_capacity;
239 if (count_ > capacity_)
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/util/
cache.cc 141 void SetCapacity(size_t capacity) { capacity_ = capacity; }
157 size_t capacity_; member in class:leveldb::__anon17091::LRUCache
248 while (usage_ > capacity_ && lru_.next != &lru_) {
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/utf/
unicodetext.h 287 int utf8_capacity() const { return repr_.capacity_; }
332 int capacity_; member in class:i18n::phonenumbers::UnicodeText::Repr
335 Repr() : data_(NULL), size_(0), capacity_(0), ours_(true) {}

Completed in 1196 milliseconds

1 2