Home | History | Annotate | Download | only in animator

Lines Matching refs:fCount

31     fReserve = fCount = 0;
40 fReserve = fCount = 0;
45 SkDS32Array tmp(src.fArray, src.fCount);
53 fReserve = fCount = 0;
65 fReserve = fCount = SkToU16(count);
73 if (src.fCount > fReserve)
75 SkDS32Array tmp(src.fArray, src.fCount);
80 memcpy(fArray, src.fArray, sizeof(int32_t) * src.fCount);
81 fCount = src.fCount;
89 return a.fCount == b.fCount &&
90 (a.fCount == 0 || !memcmp(a.fArray, b.fArray, a.fCount * sizeof(int32_t)));
100 SkTSwap(fCount, other.fCount);
105 unsigned oldCount = fCount;
121 const int32_t* stop = fArray + fCount;
134 SkASSERT(fCount + extra <= 0xFFFF);
136 if (fCount + extra > fReserve)
138 size_t size = fCount + extra + 4;
141 memcpy(array, fArray, fCount * sizeof(int32_t));
150 fCount = SkToU16(fCount + extra);
156 int oldCount = fCount;
168 const int32_t* iter = fArray + fCount;