Searched refs:min_alloc_size_ (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/content/browser/loader/
H A Dresource_buffer.cc35 min_alloc_size_(0),
54 min_alloc_size_ = min_allocation_size;
85 return (buf_size_ - diff) >= min_alloc_size_;
87 return -diff >= min_alloc_size_;
106 // the end of the buffer provided that meets the min_alloc_size_
109 if ((buf_size_ - alloc_end_) >= min_alloc_size_) {
114 // It must be possible to allocate a least min_alloc_size_.
115 DCHECK(alloc_start_ >= min_alloc_size_);
151 int aligned_size = (new_size / min_alloc_size_) * min_alloc_size_;
[all...]
H A Dresource_buffer.h109 int min_alloc_size_; member in class:content::ResourceBuffer

Completed in 261 milliseconds