Home | History | Annotate | Download | only in core

Lines Matching full: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) {
335 newAllocCount = SkMax32(newCount + ((newCount + 1) >> 1),
337 } else if (newCount < fAllocCount / 3) {