Home
last modified time | relevance | path

Searched refs:fLastValue (Results 1 – 1 of 1) sorted by relevance

/external/skia/src/gpu/
DGrHashMapWithCache.h45 fLastValue = fMap.find(key); in find()
47 return fLastValue; in find()
53 if (fLastValue && key == fLastKey) { in set()
54 *fLastValue = std::move(val); in set()
57 fLastValue = fMap.set(std::move(key), std::move(val)); in set()
59 return fLastValue; in set()
67 fLastValue = nullptr; in remove()
74 fLastValue = nullptr; in reset()
81 mutable V* fLastValue = nullptr; variable