HomeSort by relevance Sort by last modified time
    Searched refs:min_alloc_size_ (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/content/browser/loader/
resource_buffer.cc 35 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...]
resource_buffer.h 109 int min_alloc_size_; member in class:content::ResourceBuffer

Completed in 52 milliseconds