Lines Matching refs:fDim
17 fDim.set(width, height);
34 sk_bzero(fBusy, fDim.fX * fDim.fY);
39 for (int y = 0; y < fDim.fY; y++) {
40 for (int x = 0; x < fDim.fX; x++) {
53 SkASSERT((unsigned)x < (unsigned)fDim.fX);
54 SkASSERT((unsigned)y < (unsigned)fDim.fY);
55 return fBusy[y * fDim.fX + x] != 0;
59 SkASSERT((unsigned)x < (unsigned)fDim.fX);
60 SkASSERT((unsigned)y < (unsigned)fDim.fY);
61 fBusy[y * fDim.fX + x] = false;
70 SkIPoint16 fDim;