Home | History | Annotate | Download | only in text

Lines Matching refs:blob

18         for (const auto& blob : entry->fBlobs) {
19 fBlobList.remove(blob.get());
46 // remove all blob entries from the LRU list
47 for (const auto& blob : idEntry->fBlobs) {
48 fBlobList.remove(blob.get());
56 void GrTextBlobCache::checkPurge(GrAtlasTextBlob* blob) {
57 // First, purge all stale blob IDs.
65 while (fPool.size() > fBudget && (lruBlob = iter.get()) && lruBlob != blob) {
66 // Backup the iterator before removing and unrefing the blob
72 // If we break out of the loop with lruBlob == blob, then we haven't purged enough
75 if (blob && lruBlob == blob) {