Home | History | Annotate | Download | only in include

Lines Matching refs:fAllocCount

32         fAllocCount = 0;
42 fAllocCount = fReserveCount;
52 fAllocCount = N;
67 fAllocCount = preAllocCount;
75 fAllocCount = GrMax(fReserveCount, fCount);
76 fMemArray = GrMalloc(sizeof(T) * fAllocCount);
92 fAllocCount = GrMax(fReserveCount, fCount);
93 fMemArray = GrMalloc(sizeof(T) * fAllocCount);
118 fAllocCount = fReserveCount;
121 fAllocCount = GrMax(fCount, fReserveCount);
122 fMemArray = GrMalloc(fAllocCount * sizeof(T));
149 fAllocCount = fReserveCount;
152 fAllocCount = GrMax(fCount, fReserveCount);
153 fMemArray = GrMalloc(fAllocCount * sizeof(T));
279 GrAssert(fAllocCount >= 0);
284 int fNewAllocCount = fAllocCount;
286 if (newCount > fAllocCount) {
289 } else if (newCount < fAllocCount / 3) {
290 fNewAllocCount = GrMax(fAllocCount / 2, fReserveCount);
293 if (fNewAllocCount != fAllocCount) {
295 fAllocCount = fNewAllocCount;
298 if (fAllocCount == fReserveCount && NULL != fPreAllocMemArray) {
301 fNewMemArray = (char*) GrMalloc(fAllocCount*sizeof(T));
322 int fAllocCount;