Lines Matching refs:fLRUFront
78 , fLRUFront(nullptr) in GrTextureStripAtlas()
188 AtlasRow* row = fLRUFront; in getLRU()
226 fLRUFront = nullptr; in initLRU()
235 SkASSERT(nullptr == fLRUFront || nullptr == fLRUFront->fPrev); in initLRU()
241 if (nullptr == fLRUFront && nullptr == fLRUBack) { in appendLRU()
242 fLRUFront = row; in appendLRU()
265 SkASSERT(row == fLRUFront); in removeFromLRU()
266 fLRUFront = row->fNext; in removeFromLRU()
267 if (fLRUFront) { in removeFromLRU()
268 fLRUFront->fPrev = nullptr; in removeFromLRU()
299 SkASSERT(nullptr == fLRUFront || nullptr == fLRUFront->fPrev); in validate()
301 for (AtlasRow* r = fLRUFront; r != nullptr; r = r->fNext) { in validate()
319 for (AtlasRow* r = fLRUFront; r != nullptr; r = r->fNext) { in validate()