/external/parameter-framework/asio-1.10.6/include/asio/detail/ |
D | consuming_buffers.hpp | 62 max_size_(max_size) in consuming_buffers_iterator() 113 || offset_ + buffer_size(first_) >= max_size_) in increment() 120 first_ = buffer(*begin_remainder_++, max_size_ - offset_); in increment() 147 std::size_t max_size_; member in asio::detail::consuming_buffers_iterator 167 max_size_((std::numeric_limits<std::size_t>::max)()) in consuming_buffers() 182 max_size_(other.max_size_) in consuming_buffers() 199 max_size_ = other.max_size_; in operator =() 207 begin_remainder_, buffers_.end(), max_size_); in begin() 219 max_size_ = max_size; in prepare() 258 std::size_t max_size_; member in asio::detail::consuming_buffers
|
/external/libvpx/libvpx/test/ |
D | vp9_quantize_test.cc | 76 : bit_depth_(bit_depth), max_size_(max_size), is_fp_(is_fp), in VP9QuantizeBase() 77 coeff_(Buffer<tran_low_t>(max_size_, max_size_, 0, 16)), in VP9QuantizeBase() 78 qcoeff_(Buffer<tran_low_t>(max_size_, max_size_, 0, 32)), in VP9QuantizeBase() 79 dqcoeff_(Buffer<tran_low_t>(max_size_, max_size_, 0, 32)) { in VP9QuantizeBase() 128 const int max_size_; member in __anon495a79130111::VP9QuantizeBase 302 Buffer<tran_low_t>(max_size_, max_size_, 0, 32); in TEST_P() 305 Buffer<tran_low_t>(max_size_, max_size_, 0, 32); in TEST_P() 315 if (max_size_ == 16) { in TEST_P() 357 Buffer<tran_low_t>(max_size_, max_size_, 0, 32); in TEST_P() 360 Buffer<tran_low_t>(max_size_, max_size_, 0, 32); in TEST_P() [all …]
|
/external/tensorflow/tensorflow/core/kernels/boosted_trees/quantiles/ |
D | weighted_quantiles_buffer.h | 55 : max_size_(std::min(block_size << 1, max_elements)) { in WeightedQuantilesBuffer() 56 QCHECK(max_size_ > 0) << "Invalid buffer specification: (" << block_size in WeightedQuantilesBuffer() 58 vec_.reserve(max_size_); in WeightedQuantilesBuffer() 73 QCHECK(!IsFull()) << "Buffer already full: " << max_size_; in PushEntry() 93 vec_.reserve(max_size_); in GenerateEntryList() 110 bool IsFull() const { return vec_.size() >= max_size_; } in IsFull() 120 size_t max_size_; variable
|
/external/tensorflow/tensorflow/contrib/boosted_trees/lib/quantiles/ |
D | weighted_quantiles_buffer.h | 55 : max_size_(std::min(block_size << 1, max_elements)) { in WeightedQuantilesBuffer() 56 QCHECK(max_size_ > 0) << "Invalid buffer specification: (" << block_size in WeightedQuantilesBuffer() 58 vec_.reserve(max_size_); in WeightedQuantilesBuffer() 73 QCHECK(!IsFull()) << "Buffer already full: " << max_size_; in PushEntry() 93 vec_.reserve(max_size_); in GenerateEntryList() 110 bool IsFull() const { return vec_.size() >= max_size_; } in IsFull() 120 size_t max_size_; variable
|
/external/libchrome/base/task/sequence_manager/ |
D | lazily_deallocated_deque.h | 58 size_t max_size() const { return max_size_; } in max_size() 94 max_size_ = std::max(max_size_, ++size_); in push_front() 111 max_size_ = std::max(max_size_, ++size_); in push_back() 153 std::swap(max_size_, other.max_size_); in swap() 161 DCHECK_GE(max_size_, size_); in MaybeShrinkQueue() 169 size_t new_capacity = max_size_ + 1; in MaybeShrinkQueue() 175 max_size_ = size_; in MaybeShrinkQueue() 354 size_t max_size_ = 0; variable
|
/external/libchrome/base/containers/ |
D | mru_cache.h | 83 explicit MRUCacheBase(size_type max_size) : max_size_(max_size) {} in MRUCacheBase() 87 size_type max_size() const { return max_size_; } in max_size() 102 } else if (max_size_ != NO_AUTO_EVICT) { in Put() 105 ShrinkToSize(max_size_ - 1); in Put() 147 std::swap(max_size_, other.max_size_); in Swap() 213 size_type max_size_; variable
|
/external/tensorflow/tensorflow/core/kernels/ |
D | stack.cc | 54 max_size_(max_size), in Stack() 60 if (max_size_ >= 0 && stack_.size() >= max_size_) { in Push() 62 "its max_size (", max_size_, ")"); in Push() 114 int max_size_; member in tensorflow::Stack
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_quarantine.h | 52 atomic_store(&max_size_, size, memory_order_release); in Init() 58 uptr GetSize() const { return atomic_load(&max_size_, memory_order_acquire); } in GetSize() 78 atomic_uintptr_t max_size_; variable
|