HomeSort by relevance Sort by last modified time
    Searched refs:capacity_ (Results 51 - 75 of 90) sorted by null

1 23 4

  /external/perfetto/src/traced/probes/filesystem/
lru_inode_cache.cc 51 if (map_.size() > capacity_) {
  /external/webrtc/webrtc/modules/audio_coding/neteq/
audio_vector.h 106 size_t capacity_; // Allocated number of samples in the array. member in class:webrtc::AudioVector
  /toolchain/binutils/binutils-2.27/gold/
gdb-index.cc 55 : size_(0), capacity_(0), hashtab_(NULL)
60 for (size_t i = 0; i < this->capacity_; ++i)
71 if (4 * this->size_ / 3 >= this->capacity_)
92 { return this->capacity_; }
105 unsigned int index = symbol->hash() & (this->capacity_ - 1);
106 unsigned int step = ((symbol->hash() * 17) & (this->capacity_ - 1)) | 1;
113 index = (index + step) & (this->capacity_ - 1);
121 if (this->capacity_ == 0)
124 this->capacity_ = Gdb_hashtab::initial_size;
125 this->hashtab_ = new T*[this->capacity_];
151 size_t capacity_; member in class:gold::Gdb_hashtab
    [all...]
dwp.cc 523 : capacity_(0), used_(0), hash_table_(NULL), section_table_(),
553 { return this->capacity_; }
591 unsigned int capacity_; member in class:gold::Dwp_output_file::Dwp_index
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
stage_op.cc 40 std::size_t capacity_; member in class:tensorflow::__anon39937::Buffer
65 bool IsBounded() const { return capacity_ > 0 || memory_limit_ > 0; }
67 bool IsCapacityFull() const { return buf_.size() >= capacity_; }
83 : capacity_(capacity), memory_limit_(memory_limit), current_bytes_(0) {}
109 bool capacity_valid = capacity_ > 0 ? !IsCapacityFull() : true;
queue_base.h 70 int32 capacity() const { return capacity_; }
145 const int32 capacity_; member in class:tensorflow::QueueBase
random_shuffle_queue_op.cc 145 if (queues_[0].size() < static_cast<size_t>(capacity_)) {
204 while (queues_[0].size() < static_cast<size_t>(capacity_)) {
442 TF_RETURN_IF_ERROR(MatchesNodeDefCapacity(node_def, capacity_));
485 context, min_after_dequeue_ < capacity_,
487 " must be < capacity ", capacity_));
498 capacity_, min_after_dequeue_, seed_, seed2_, component_types_,
fifo_queue.cc 68 if (queues_[0].size() < static_cast<size_t>(capacity_)) {
127 while (queues_[0].size() < static_cast<size_t>(capacity_)) {
363 TF_RETURN_IF_ERROR(MatchesNodeDefCapacity(node_def, capacity_));
priority_queue.cc 89 if (queues_[0].size() < static_cast<size_t>(capacity_)) {
155 while (queues_[0].size() < static_cast<size_t>(capacity_)) {
394 TF_RETURN_IF_ERROR(MatchesNodeDefCapacity(node_def, capacity_));
map_stage_op.cc 96 std::size_t capacity_ GUARDED_BY(mu_);
129 return capacity_ > 0;
142 return has_capacity() && map_.size() >= capacity_;
341 capacity_(capacity),
  /frameworks/native/libs/vr/libpdx/private/pdx/
utility.h 39 std::swap(capacity_, other.capacity_);
47 inline size_t capacity() const { return capacity_; }
64 if (size <= capacity_)
77 capacity_ = size;
96 size_t capacity_{0};
  /frameworks/native/services/vr/bufferhubd/
producer_queue_channel.h 76 size_t capacity_; member in class:android::dvr::ProducerQueueChannel
  /art/runtime/
indirect_reference_table.h 189 : table_(table), i_(i), capacity_(capacity) {
190 // capacity_ is used in some target; has warning with unused attribute.
191 UNUSED(capacity_);
211 const size_t capacity_; member in class:art::IrtIterator
  /external/v8/src/
list.h 81 INLINE(int capacity() const) { return capacity_; }
173 capacity_ = capacity;
179 int capacity_; member in class:v8::internal::List
string-stream.cc 39 DCHECK(length_ < capacity_);
41 // indicated by a difference of 1 between length_ and capacity_. Thus when
43 if (length_ == capacity_ - 2) {
44 unsigned new_capacity = capacity_;
46 if (new_capacity > capacity_) {
47 capacity_ = new_capacity;
51 DCHECK(capacity_ >= 5);
52 length_ = capacity_ - 1; // Indicate fullness of the stream.
  /external/v8/src/heap/
spaces.h 1371 size_t capacity_; member in class:v8::internal::MemoryAllocator
1642 size_t capacity_; member in class:v8::internal::BASE_EMBEDDED
    [all...]
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/
remote_bitrate_estimator_unittest_helper.h 136 int capacity_; member in class:webrtc::testing::StreamGenerator
remote_bitrate_estimator_unittest_helper.cc 117 : capacity_(capacity),
136 capacity_ = capacity_bps;
172 assert(capacity_ > 0);
179 int capacity_bpus = capacity_ / 1000;
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_common.h 501 capacity_ = Max(initial_capacity, (uptr)1);
503 data_ = (T *)MmapOrDie(capacity_ * sizeof(T), "InternalMmapVectorNoCtor");
506 UnmapOrDie(data_, capacity_ * sizeof(T));
517 CHECK_LE(size_, capacity_);
518 if (size_ == capacity_) {
542 return capacity_;
570 UnmapOrDie(old_data, capacity_ * sizeof(T));
571 capacity_ = new_capacity;
575 uptr capacity_;
  /external/v8/src/interpreter/
constant-array-builder.h 162 inline size_t capacity() const { return capacity_; }
170 const size_t capacity_; member in struct:v8::internal::interpreter::BASE_EMBEDDED::final
  /art/runtime/gc/allocator/
rosalloc.cc 60 capacity_(capacity), max_capacity_(max_capacity),
81 << std::hex << (intptr_t)(base_ + capacity_)
82 << ", capacity=" << std::dec << capacity_
90 DCHECK_EQ(footprint_, capacity_);
106 free_pages->SetByteSize(this, capacity_);
107 DCHECK_EQ(capacity_ % kPageSize, static_cast<size_t>(0));
124 MEMORY_TOOL_MAKE_DEFINED(base_, capacity_);
174 if (UNLIKELY(res == nullptr && capacity_ > footprint_)) {
188 if (capacity_ - footprint_ + last_free_page_run_size >= req_byte_size) {
191 capacity_ - footprint_)
    [all...]
rosalloc.h 611 DCHECK_LT(addr, base_ + capacity_);
618 DCHECK(base_ <= addr && addr < reinterpret_cast<uint8_t*>(base_) + capacity_);
703 // The maximum footprint. The address, base_ + capacity_, indicates
705 size_t capacity_; member in class:art::gc::allocator::RosAlloc
777 uint8_t* End() { return base_ + capacity_; }
    [all...]
  /frameworks/native/libs/vr/libbufferhubqueue/include/private/dvr/
buffer_hub_queue_client.h 78 size_t capacity() const { return capacity_; }
260 size_t capacity_{0};
  /external/icu/icu4c/source/i18n/
collationkeys.cpp 50 int32_t available = capacity_ - length;
73 int32_t available = capacity_ - appended_;
78 *result_capacity = capacity_ - appended_;
  /frameworks/native/libs/vr/libbufferhubqueue/
buffer_hub_queue_client.cpp 287 capacity_);
313 capacity_++;
338 capacity_--;

Completed in 691 milliseconds

1 23 4