Searched defs:max_size_ (Results 1 - 23 of 23) sorted by relevance

/external/chromium_org/cc/base/
H A Drolling_time_delta_history.h37 size_t max_size_; member in class:cc::RollingTimeDeltaHistory
/external/chromium_org/ui/message_center/views/
H A Dproportional_image_view.h28 gfx::Size max_size_; member in class:message_center::ProportionalImageView
/external/chromium_org/net/disk_cache/blockfile/
H A Deviction.h75 int max_size_; member in class:disk_cache::Eviction
H A Deviction_v3.h63 int max_size_; member in class:disk_cache::EvictionV3
H A Dbackend_impl.h371 int32 max_size_; // Maximum data size for this instance. member in class:disk_cache::BackendImpl
H A Dbackend_impl_v3.h249 int32 max_size_; // Maximum data size for this instance. member in class:disk_cache::BackendImplV3
/external/chromium_org/net/disk_cache/memory/
H A Dmem_backend_impl.h111 int32 max_size_; // Maximum data size for this instance. member in class:disk_cache::MemBackendImpl
/external/chromium_org/net/spdy/
H A Dhpack_header_table.h60 size_t max_size() const { return max_size_; }
120 // |max_size_| <= |settings_header_table_size_|
122 size_t max_size_; member in class:net::HpackHeaderTable
/external/chromium_org/third_party/libjingle/source/talk/session/media/
H A Dmediarecorder.h69 size_t max_size_; member in class:cricket::RtpDumpSink
/external/chromium_org/chrome/browser/net/
H A Devicted_domain_cookie_counter.h137 const size_t max_size_; member in class:chrome_browser_net::EvictedDomainCookieCounter
139 // After garbage collection, size reduces to <= |max_size_| - |purge_count_|.
/external/chromium_org/third_party/re2/util/
H A Dsparse_set.h57 : size_(0), max_size_(0), sparse_to_dense_(NULL), dense_(NULL),
61 max_size_ = max_size;
95 if (new_max_size > max_size_) {
98 memmove(a, sparse_to_dense_, max_size_*sizeof a[0]);
100 for (int i = max_size_; i < new_max_size; i++)
118 max_size_ = new_max_size;
123 int max_size() const { return max_size_; }
131 DCHECK_LT(i, max_size_);
132 if (static_cast<uint>(i) >= max_size_) {
149 if (static_cast<uint>(i) >= max_size_) {
170 int max_size_; member in class:re2::SparseSet
[all...]
H A Dsparse_array.h56 // size max_size_. At any point, the number of elements in the sparse array is
142 return max_size_;
224 int max_size_; member in class:re2::SparseArray
234 : size_(0), max_size_(0), sparse_to_dense_(NULL), dense_(),
272 if (new_max_size > max_size_) {
275 memmove(a, sparse_to_dense_, max_size_*sizeof a[0]);
278 for (int i = max_size_; i < new_max_size; i++)
287 max_size_ = new_max_size;
288 if (size_ > max_size_)
289 size_ = max_size_;
[all...]
/external/chromium_org/ui/views/controls/button/
H A Dlabel_button.h173 // |max_size_| may be set to clamp the preferred size.
174 gfx::Size max_size_; member in class:views::LabelButton
/external/regex-re2/util/
H A Dsparse_set.h57 : size_(0), max_size_(0), sparse_to_dense_(NULL), dense_(NULL), valgrind_(RunningOnValgrind()) {}
60 max_size_ = max_size;
94 if (new_max_size > max_size_) {
97 memmove(a, sparse_to_dense_, max_size_*sizeof a[0]);
99 for (int i = max_size_; i < new_max_size; i++)
117 max_size_ = new_max_size;
122 int max_size() const { return max_size_; }
130 DCHECK_LT(i, max_size_);
131 if (static_cast<uint>(i) >= max_size_) {
148 if (static_cast<uint>(i) >= max_size_) {
169 int max_size_; member in class:re2::SparseSet
[all...]
H A Dsparse_array.h56 // size max_size_. At any point, the number of elements in the sparse array is
142 return max_size_;
224 int max_size_; member in class:re2::SparseArray
234 : size_(0), max_size_(0), sparse_to_dense_(NULL), dense_(), valgrind_(RunningOnValgrind()) {}
271 if (new_max_size > max_size_) {
274 memmove(a, sparse_to_dense_, max_size_*sizeof a[0]);
277 for (int i = max_size_; i < new_max_size; i++)
286 max_size_ = new_max_size;
287 if (size_ > max_size_)
288 size_ = max_size_;
[all...]
/external/chromium_org/net/disk_cache/simple/
H A Dsimple_index.h90 int max_size() const { return max_size_; }
164 uint64 max_size_; member in class:disk_cache::SimpleIndex
/external/chromium_org/ui/views/widget/desktop_aura/
H A Ddesktop_window_tree_host_x11.h274 gfx::Size max_size_; member in class:views::DesktopWindowTreeHostX11
/external/chromium_org/base/containers/
H A Dmru_cache.h69 explicit MRUCacheBase(size_type max_size) : max_size_(max_size) {
73 : max_size_(max_size), deletor_(deletor) {
82 size_type max_size() const { return max_size_; }
97 } else if (max_size_ != NO_AUTO_EVICT) {
100 ShrinkToSize(max_size_ - 1);
203 size_type max_size_; member in class:base::MRUCacheBase
/external/chromium_org/chrome/browser/ui/panels/
H A Dpanel.h193 const gfx::Size& max_size() const { return max_size_; }
375 gfx::Size max_size_; member in class:Panel
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dthread_cache.h235 // Increase max_size_ by reducing unclaimed_cache_space_ or by
236 // reducing the max_size_ of some other thread. In both cases,
275 // the next ThreadCache from which a thread over its max_size_ should
289 // Represents overall_thread_cache_size_ minus the sum of max_size_
297 size_t max_size_; // size_ > max_size_ --> Scavenge() member in class:tcmalloc::ThreadCache
350 ssize_t size_headroom = max_size_ - size_ - 1;
368 if (size_ >= max_size_) Scavenge();
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_quarantine.h52 max_size_ = size;
68 if (cache_.Size() > max_size_ && recycle_mutex_.TryLock())
75 uptr max_size_; member in class:__sanitizer::Quarantine
/external/chromium_org/ash/wm/workspace/
H A Dworkspace_window_resizer_unittest.cc49 max_size_ = size;
59 return max_size_;
63 gfx::Size max_size_; member in class:ash::__anon2098::TestWindowDelegate
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dthread_cache.h241 // Increase max_size_ by reducing unclaimed_cache_space_ or by
242 // reducing the max_size_ of some other thread. In both cases,
290 // the next ThreadCache from which a thread over its max_size_ should
304 // Represents overall_thread_cache_size_ minus the sum of max_size_
312 size_t max_size_; // size_ > max_size_ --> Scavenge() member in class:tcmalloc::ThreadCache
377 ssize_t size_headroom = max_size_ - size_ - 1;
395 if (size_ >= max_size_) Scavenge();

Completed in 1734 milliseconds