Lines Matching refs:end
15 char* fEnd; // end of used section in this chunk
16 char* fStop; // end of the allocated chunk
118 char* end;
123 end = last->fBegin + fElemSize;
125 end = last->fEnd + fElemSize;
126 if (end > last->fStop) { // no more room in this chunk
136 last->fEnd = end;
137 end -= fElemSize;
141 fFront = fBack = end;
144 fBack = end;
147 return end;
200 char* end = last->fEnd - fElemSize;
201 SkASSERT(end >= last->fBegin);
203 if (end > last->fBegin) {
204 last->fEnd = end;
284 // reset works by skipping through the spare blocks at the start (or end)