Home | History | Annotate | Download | only in core

Lines Matching defs:newCount

156         int newCount = fCount - 1;
157 fCount = newCount;
159 if (n != newCount) {
160 SkTArrayExt::copy(this, n, newCount);
161 fItemArray[newCount].~T();
263 void resize_back(int newCount) {
264 SkASSERT(newCount >= 0);
266 if (newCount > fCount) {
267 this->push_back_n(newCount - fCount);
268 } else if (newCount < fCount) {
269 this->pop_back_n(fCount - newCount);
417 int newCount = fCount + delta;
420 if (newCount > fAllocCount || newCount < (fAllocCount / 3)) {
423 newAllocCount = SkMax32(newCount + ((newCount + 1) >> 1), fReserveCount);