Searched defs:dstArea (Results 1 - 9 of 9) sorted by relevance

/external/dng_sdk/source/
H A Ddng_filter_task.h75 /// \param dstArea Area to for which pixels will be computed.
80 virtual dng_rect SrcArea (const dng_rect &dstArea) argument
82 return dstArea;
H A Ddng_misc_opcodes.cpp402 const dng_rect &dstArea,
406 dng_rect overlap = fAreaSpec.Overlap (dstArea);
621 const dng_rect &dstArea,
625 dng_rect overlap = fAreaSpec.Overlap (dstArea);
983 const dng_rect &dstArea,
987 dng_rect overlap = fAreaSpec.Overlap (dstArea);
1189 const dng_rect &dstArea,
1193 dng_rect overlap = fAreaSpec.Overlap (dstArea);
1369 const dng_rect &dstArea,
1373 dng_rect overlap = fAreaSpec.Overlap (dstArea);
399 ProcessArea(dng_negative & , uint32 , dng_pixel_buffer &buffer, const dng_rect &dstArea, const dng_rect & ) argument
618 ProcessArea(dng_negative & , uint32 , dng_pixel_buffer &buffer, const dng_rect &dstArea, const dng_rect & ) argument
980 ProcessArea(dng_negative & , uint32 , dng_pixel_buffer &buffer, const dng_rect &dstArea, const dng_rect & ) argument
1186 ProcessArea(dng_negative & , uint32 , dng_pixel_buffer &buffer, const dng_rect &dstArea, const dng_rect & ) argument
1366 ProcessArea(dng_negative & , uint32 , dng_pixel_buffer &buffer, const dng_rect &dstArea, const dng_rect & ) argument
1543 ProcessArea(dng_negative & , uint32 , dng_pixel_buffer &buffer, const dng_rect &dstArea, const dng_rect & ) argument
[all...]
H A Ddng_opcodes.cpp276 virtual dng_rect SrcArea (const dng_rect &dstArea) argument
279 return fOpcode.SrcArea (dstArea,
H A Ddng_opcodes.h305 /// \param dstArea The destination pixel area to be computed.
306 /// \param imageBounds The overall image area (dstArea will lie within these
308 /// \retval The source pixel area needed to process the specified dstArea.
310 virtual dng_rect SrcArea (const dng_rect &dstArea, argument
313 return dstArea;
383 /// \param dstArea Destination pixel processing area.
385 /// \param imageBounds Total image area to be processed; dstArea will
392 const dng_rect &dstArea,
486 /// \param dstArea Destination pixel processing area.
488 /// \param imageBounds Total image area to be processed; dstArea wil
[all...]
H A Ddng_gain_map.cpp546 const dng_rect &dstArea,
550 dng_rect overlap = fAreaSpec.Overlap (dstArea);
543 ProcessArea(dng_negative & , uint32 , dng_pixel_buffer &buffer, const dng_rect &dstArea, const dng_rect &imageBounds) argument
H A Ddng_render.cpp749 virtual dng_rect SrcArea (const dng_rect &dstArea);
807 dng_rect dng_render_task::SrcArea (const dng_rect &dstArea) argument
810 return dstArea + fSrcOffset;
995 dng_rect dstArea = dstBuffer.fArea; local
1138 int32 dstRow = srcRow + (dstArea.t - srcArea.t);
1144 dstArea.l,
1165 dstArea.l,
H A Ddng_pixel_buffer.cpp1244 const dng_rect &dstArea)
1253 if (srcArea.t >= dstArea.t)
1255 phaseV = (repeatV - ((srcArea.t - dstArea.t) % repeatV)) % repeatV;
1259 phaseV = (dstArea.t - srcArea.t) % repeatV;
1262 if (srcArea.l >= dstArea.l)
1264 phaseH = (repeatH - ((srcArea.l - dstArea.l) % repeatH)) % repeatH;
1268 phaseH = (dstArea.l - srcArea.l) % repeatH;
1278 const dng_rect &dstArea)
1284 dstArea);
1290 void *dPtr = DirtyPixel (dstArea
1243 RepeatPhase(const dng_rect &srcArea, const dng_rect &dstArea) argument
1277 RepeatArea(const dng_rect &srcArea, const dng_rect &dstArea) argument
[all...]
H A Ddng_resample.cpp514 virtual dng_rect SrcArea (const dng_rect &dstArea);
590 dng_rect dng_resample_task::SrcArea (const dng_rect &dstArea) argument
601 srcArea.t = SafeInt32Add (fRowCoords.Pixel (dstArea.t), offsetV);
602 srcArea.l = SafeInt32Add (fColCoords.Pixel (dstArea.l), offsetH);
605 fRowCoords.Pixel (SafeInt32Sub (dstArea.b, 1)),
609 fColCoords.Pixel (SafeInt32Sub (dstArea.r, 1)),
701 dng_rect dstArea = dstBuffer.fArea; local
704 uint32 dstCols = dstArea.W ();
715 const int32 *colCoords = fColCoords.Coords (dstArea.l);
726 for (int32 dstRow = dstArea
[all...]
H A Ddng_bad_pixels.cpp104 dng_rect dng_opcode_FixBadPixelsConstant::SrcArea (const dng_rect &dstArea, argument
108 dng_rect srcArea = dstArea;
157 const dng_rect &dstArea,
162 dstArea,
168 for (int32 dstRow = dstArea.t; dstRow < dstArea.b; dstRow++)
171 const uint16 *sPtr = srcBuffer.ConstPixel_uint16 (dstRow, dstArea.l, 0);
172 uint16 *dPtr = dstBuffer.DirtyPixel_uint16 (dstRow, dstArea.l, 0);
174 for (int32 dstCol = dstArea.l; dstCol < dstArea
153 ProcessArea(dng_negative & , uint32 , dng_pixel_buffer &srcBuffer, dng_pixel_buffer &dstBuffer, const dng_rect &dstArea, const dng_rect & ) argument
738 SrcArea(const dng_rect &dstArea, const dng_rect & ) argument
1720 ProcessArea(dng_negative & , uint32 , dng_pixel_buffer &srcBuffer, dng_pixel_buffer &dstBuffer, const dng_rect &dstArea, const dng_rect &imageBounds) argument
[all...]

Completed in 551 milliseconds