Home | History | Annotate | Download | only in gpu

Lines Matching defs:fRec

41     const Rec* rec() const { return fCount <= kNumLocalWindows ? nullptr : fRec; }
46 Rec* fRec; // If fCount > kNumLocalWindows.
61 return fCount <= kNumLocalWindows ? fLocalWindows : fRec->fData;
75 fRec = SkRef(that.fRec);
88 result.fRec = new Rec();
89 windows = result.fRec->fData;
105 fRec = new Rec(fLocalWindows, kNumLocalWindows);
106 } else if (!fRec->unique()) { // Simple copy-on-write.
107 fRec->unref();
108 fRec = new Rec(fRec->fData, fCount);
110 return fRec->fData[fCount++];
117 if (fCount > kNumLocalWindows && fRec == that.fRec) {