Lines Matching refs:srcArea
1243 dng_point dng_pixel_buffer::RepeatPhase (const dng_rect &srcArea, in RepeatPhase() argument
1247 int32 repeatV = srcArea.H (); in RepeatPhase()
1248 int32 repeatH = srcArea.W (); in RepeatPhase()
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()
1277 void dng_pixel_buffer::RepeatArea (const dng_rect &srcArea, in RepeatArea() argument
1281 dng_point repeat = srcArea.Size (); in RepeatArea()
1283 dng_point phase = RepeatPhase (srcArea, in RepeatArea()
1286 const void *sPtr = ConstPixel (srcArea.t, in RepeatArea()
1287 srcArea.l, in RepeatArea()