Home | History | Annotate | Download | only in source

Lines Matching refs:area

32 /// Compute best set of step values for a given source and destination area and stride.
92 // Area this buffer holds.
130 // Ensure pixel to be accessed lies inside valid area.
171 /// \param size Area covered by the pixel buffer
180 dng_pixel_buffer (const dng_rect &area, uint32 plane, uint32 planes,
198 const dng_rect & Area () const
497 /// Initialize a rectangular area of pixel buffer to a constant.
498 /// \param area Rectangle of pixel buffer to set.
503 void SetConstant (const dng_rect &area,
508 /// Initialize a rectangular area of pixel buffer to a constant unsigned 8-bit value.
509 /// \param area Rectangle of pixel buffer to set.
514 void SetConstant_uint8 (const dng_rect &area,
522 SetConstant (area, plane, planes, (uint32) value);
526 /// Initialize a rectangular area of pixel buffer to a constant unsigned 16-bit value.
527 /// \param area Rectangle of pixel buffer to set.
532 void SetConstant_uint16 (const dng_rect &area,
540 SetConstant (area, plane, planes, (uint32) value);
544 /// Initialize a rectangular area of pixel buffer to a constant signed 16-bit value.
545 /// \param area Rectangle of pixel buffer to set.
550 void SetConstant_int16 (const dng_rect &area,
558 SetConstant (area, plane, planes, (uint32) (uint16) value);
562 /// Initialize a rectangular area of pixel buffer to a constant unsigned 32-bit value.
563 /// \param area Rectangle of pixel buffer to set.
568 void SetConstant_uint32 (const dng_rect &area,
576 SetConstant (area
580 /// Initialize a rectangular area of pixel buffer to a constant real 32-bit value.
581 /// \param area Rectangle of pixel buffer to set.
586 void SetConstant_real32 (const dng_rect &area,
602 SetConstant (area, plane, planes, x.i);
606 /// Initialize a rectangular area of pixel buffer to zeros.
607 /// \param area Rectangle of pixel buffer to zero.
608 /// \param area Area to zero
612 void SetZero (const dng_rect &area,
616 /// Copy image data from an area of one pixel buffer to same area of another.
618 /// \param area Rectangle of pixel buffer to copy.
624 const dng_rect &area,
629 /// Copy image data from an area of one pixel buffer to same area of another.
631 /// \param area Rectangle of pixel buffer to copy.
636 const dng_rect &area,
641 CopyArea (src, area, plane, plane, planes);
655 /// \param srcArea Area to repeat from.
656 /// \param dstArea Area to fill with data from srcArea.
661 /// Replicates a sub-area of a buffer to fill the entire buffer.
687 /// Return true if the contents of an area of the pixel buffer area are the same as those of another.
689 /// \param area Rectangle of pixel buffer to test.
695 const dng_rect &area,
701 /// \param area Rectangle of pixel buffer to test.
704 /// \retval larges absolute value difference between the corresponding pixels each buffer across area.
707 const dng_rect &area,