Home | History | Annotate | Download | only in third_party

Lines Matching defs:page_count_

30   PagedArray() : pages_(NULL), page_count_(0) {}
37 // It is tempting to add a DCHECK(page < page_count_), but that makes
51 for (page_count_ = 0; page_count_ < pages_needed; ++page_count_) {
57 pages_[page_count_] = block;
65 while (page_count_ != 0) {
66 --page_count_;
67 delete[] pages_[page_count_];
76 size_t page_count_;