Lines Matching refs:fFirst
27 GrGLuint first() const { return fFirst; } in first()
117 GrGLuint fFirst; member in GrGLNameAllocator::SparseNameRange
181 SkASSERT(fFirst > count); // We can't allocate at or below 0. in prependNames()
183 SkASSERT(fLeft->first() == fFirst - count); in prependNames()
261 fFirst = fLeft->first(); in updateStats()
278 fFirst = first; in ContiguousNameRange()
289 *removedCount = fEnd - fFirst; in removeLeftmostContiguousRange()
301 SkASSERT(fFirst > count); // We can't allocate at or below 0. in prependNames()
302 fFirst -= count; in prependNames()
303 return fFirst; in prependNames()
307 if (name < fFirst || name >= fEnd) { in free()
312 if (fFirst == name) { in free()
313 ++fFirst; in free()
314 return (fEnd == fFirst) ? NULL : this->takeRef(); in free()
322 SparseNameRange* left = SkNEW_ARGS(ContiguousNameRange, (fFirst, name)); in free()
324 fFirst = name + 1; in free()