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

  /external/skia/src/animator/
SkDrawGroup.h 53 bool markedForDelete(int index) const { return (fCopies[index >> 5] & 1 << (index & 0x1f)) == 0; }
67 SkTDIntArray fCopies;
SkDrawGroup.cpp 46 int max = fCopies.count() << 5;
89 return (fCopies[index >> 5] & 1 << (index & 0x1f)) != 0;
239 fCopies[index >> 5] &= ~(1 << (index & 0x1f));
245 fCopies[index >> 5] |= 1 << (index & 0x1f);
251 int oldLongs = fCopies.count();
254 fCopies.setCount(newLongs);
255 memset(&fCopies[oldLongs], 0, (newLongs - oldLongs) << 2);
263 int max = fCopies.count() << 5;

Completed in 43 milliseconds