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

  /external/chromium_org/content/browser/loader/
resource_buffer.cc 15 // We keep track of the starting offset (alloc_start_) and the ending offset
37 alloc_start_(-1),
80 if (alloc_start_ == -1)
83 int diff = alloc_end_ - alloc_start_;
96 if (alloc_start_ == -1) {
98 alloc_start_ = 0;
101 } else if (alloc_start_ < alloc_end_) {
115 DCHECK(alloc_start_ >= min_alloc_size_);
116 alloc_size = alloc_start_;
117 alloc_end_ = alloc_start_;
    [all...]
resource_buffer.h 113 // If alloc_start_ is -1, then the range is empty and nothing is allocated.
114 // Otherwise, alloc_start_ points to the start of the allocated range, and
116 // wraparound case, alloc_end_ <= alloc_start_. See resource_buffer.cc for
118 int alloc_start_; member in class:content::ResourceBuffer

Completed in 107 milliseconds