Lines Matching refs:dstArea
1244 const dng_rect &dstArea) in RepeatPhase() argument
1253 if (srcArea.t >= dstArea.t) in RepeatPhase()
1255 phaseV = (repeatV - ((srcArea.t - dstArea.t) % repeatV)) % repeatV; in RepeatPhase()
1259 phaseV = (dstArea.t - srcArea.t) % repeatV; in RepeatPhase()
1262 if (srcArea.l >= dstArea.l) in RepeatPhase()
1264 phaseH = (repeatH - ((srcArea.l - dstArea.l) % repeatH)) % repeatH; in RepeatPhase()
1268 phaseH = (dstArea.l - srcArea.l) % repeatH; in RepeatPhase()
1278 const dng_rect &dstArea) in RepeatArea() argument
1284 dstArea); in RepeatArea()
1290 void *dPtr = DirtyPixel (dstArea.t, in RepeatArea()
1291 dstArea.l, in RepeatArea()
1294 uint32 rows = dstArea.H (); in RepeatArea()
1295 uint32 cols = dstArea.W (); in RepeatArea()