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

/external/chromium_org/content/browser/loader/
H A Dresource_buffer.cc16 // (alloc_end_). There are two layouts to keep in mind:
38 alloc_end_(-1) {
83 int diff = alloc_end_ - alloc_start_;
99 alloc_end_ = buf_size_;
101 } else if (alloc_start_ < alloc_end_) {
109 if ((buf_size_ - alloc_end_) >= min_alloc_size_) {
110 alloc_offset = alloc_end_;
111 alloc_size = buf_size_ - alloc_end_;
112 alloc_end_ = buf_size_;
117 alloc_end_
[all...]
H A Dresource_buffer.h115 // alloc_end_ points just beyond the end of the previous allocation. In the
116 // wraparound case, alloc_end_ <= alloc_start_. See resource_buffer.cc for
119 int alloc_end_; member in class:content::ResourceBuffer

Completed in 63 milliseconds