Home | History | Annotate | Download | only in core

Lines Matching refs:newCount

216     void resize_back(int newCount) {
217 SkASSERT(newCount >= 0);
219 if (newCount > fCount) {
220 push_back_n(newCount - fCount);
221 } else if (newCount < fCount) {
222 pop_back_n(fCount - newCount);
331 int newCount = fCount + delta;
334 if (newCount > fAllocCount || newCount < (fAllocCount / 3)) {
337 newAllocCount = SkMax32(newCount + ((newCount + 1) >> 1), fReserveCount);