Home | History | Annotate | Download | only in animator

Lines Matching refs:fArray

32     fArray = NULL;
41 fArray = NULL;
45 SkDS32Array tmp(src.fArray, src.fCount);
54 fArray = NULL;
60 fArray = (int32_t*)sk_malloc_throw(count * sizeof(int32_t));
62 fData = (int32_t (*)[kDebugArraySize]) fArray;
64 memcpy(fArray, src, sizeof(int32_t) * count);
75 SkDS32Array tmp(src.fArray, src.fCount);
80 memcpy(fArray, src.fArray, sizeof(int32_t) * src.fCount);
90 (a.fCount == 0 || !memcmp(a.fArray, b.fArray, a.fCount * sizeof(int32_t)));
95 SkTSwap(fArray, other.fArray);
108 SkASSERT(src == NULL || fArray == NULL ||
109 src + count <= fArray || fArray + count <= src);
113 memcpy(fArray + oldCount, src, sizeof(int32_t) * count);
115 return fArray + oldCount;
120 const int32_t* iter = fArray;
121 const int32_t* stop = fArray + fCount;
126 return (int) (iter - fArray);
141 memcpy(array, fArray, fCount * sizeof(int32_t));
143 sk_free(fArray);
144 fArray = array;
146 fData = (int32_t (*)[kDebugArraySize]) fArray;
158 int32_t* dst = fArray + index;
168 const int32_t* iter = fArray + fCount;
169 const int32_t* stop = fArray;