Home | History | Annotate | Download | only in private

Lines Matching full:newcount

120         int newCount = fCount - 1;
121 fCount = newCount;
123 if (n != newCount) {
124 this->move(n, newCount);
234 void resize_back(int newCount) {
235 SkASSERT(newCount >= 0);
237 if (newCount > fCount) {
238 this->push_back_n(newCount - fCount);
239 } else if (newCount < fCount) {
240 this->pop_back_n(fCount - newCount);
436 int newCount = fCount + delta;
439 if (newCount > fAllocCount || newCount < (fAllocCount / 3)) {
442 newAllocCount = SkMax32(newCount + ((newCount + 1) >> 1), fReserveCount);