Home | History | Annotate | Download | only in gpu

Lines Matching refs:fIntervals

39             fIntervals.reset(src.getDashCount());
40 memcpy(fIntervals.get(), src.fIntervals.get(), fIntervals.count() * sizeof(SkScalar));
62 fIntervals.reset(other.getDashCount());
63 memcpy(fIntervals.get(), other.fIntervals.get(), fIntervals.count() * sizeof(SkScalar));
77 fIntervals.count() != other.fIntervals.count() ||
78 memcmp(fIntervals.get(), other.fIntervals.get(),
79 fIntervals.count() * sizeof(SkScalar)) != 0) {
96 fIntervals.reset(dashInfo.fCount);
97 dashInfo.fIntervals = fIntervals.get();
113 fIntervals.reset(info.fCount);
114 for (int i = 0; i < fIntervals.count(); i++) {
115 fIntervals[i] = info.fIntervals[i];
128 return fIntervals.count();
138 return fIntervals.get();
187 SkAutoSTArray<2, SkScalar> fIntervals;