HomeSort by relevance Sort by last modified time
    Searched refs:fTaggedGenID (Results 1 - 2 of 2) sorted by null

  /external/skia/src/core/
SkPixelRef.cpp 73 fTaggedGenID.store(0);
83 this->fTaggedGenID.store(genID & ~1u);
84 that. fTaggedGenID.store(genID & ~1u);
229 uint32_t id = fTaggedGenID.load();
232 if (fTaggedGenID.compare_exchange(&id, next)) {
233 id = next; // There was no race or we won the race. fTaggedGenID is next now.
235 // We lost a race to set fTaggedGenID. compare_exchange() filled id with the winner.
297 fTaggedGenID.store(genID);
  /external/skia/include/core/
SkPixelRef.h 287 bool genIDIsUnique() const { return SkToBool(fTaggedGenID.load() & 1); }
288 mutable SkAtomic<uint32_t> fTaggedGenID;

Completed in 4642 milliseconds