Lines Matching refs:width

595 	BPoint dstOffset, int32 width, int32 height, bool srcSwap, bool dstSwap,
633 // Ensure that the width fits
636 if (srcWidth < width)
637 width = srcWidth;
641 if (dstWidth < width)
642 width = dstWidth;
644 if (width < 0)
647 int32 srcLinePad = (srcBitsPerRow - width * srcBitsPerPixel + 7) >> 3;
648 int32 dstLinePad = (dstBitsPerRow - width * dstBitsPerPixel + 7) >> 3;
661 for (int32 j = 0; j < width; j++) {
718 dstOffsetX -= width;
719 srcOffsetX -= width;
734 BPoint dstOffset, int32 width, int32 height, bool srcSwap, bool dstSwap,
772 // Ensure that the width fits
775 if (srcWidth < width)
776 width = srcWidth;
780 if (dstWidth < width)
781 width = dstWidth;
783 if (width < 0)
788 int32 copyCount = (width * srcBitsPerPixel) >> 3;
812 int32 srcLinePad = (srcBitsPerRow - width * srcBitsPerPixel + 7) >> 3;
813 int32 dstLinePad = (dstBitsPerRow - width * dstBitsPerPixel + 7) >> 3;
818 for (int32 j = 0; j < width; j++) {
883 dstOffsetX -= width;
884 srcOffsetX -= width;
897 color_space dstColorSpace, BPoint srcOffset, BPoint dstOffset, int32 width,
906 32, srcColorSpace, dstColorSpace, srcOffset, dstOffset, width,
915 srcColorSpace, dstColorSpace, srcOffset, dstOffset, width,
927 srcColorSpace, dstColorSpace, srcOffset, dstOffset, width,
936 srcColorSpace, dstColorSpace, srcOffset, dstOffset, width,
955 color_space dstColorSpace, BPoint srcOffset, BPoint dstOffset, int32 width,
964 32, srcColorSpace, dstColorSpace, srcOffset, dstOffset, width,
973 srcColorSpace, dstColorSpace, srcOffset, dstOffset, width,
985 srcColorSpace, dstColorSpace, srcOffset, dstOffset, width,
994 srcColorSpace, dstColorSpace, srcOffset, dstOffset, width,
1003 dstColorSpace, srcOffset, dstOffset, width, height, srcSwap,
1012 dstColorSpace, srcOffset, dstOffset, width, height, srcSwap,
1022 dstColorSpace, srcOffset, dstOffset, width, height, srcSwap,
1032 srcColorSpace, dstColorSpace, srcOffset, dstOffset, width,
1042 dstColorSpace, srcOffset, dstOffset, width, height, srcSwap,
1051 srcColorSpace, dstColorSpace, srcOffset, dstOffset, width,
1060 srcColorSpace, dstColorSpace, srcOffset, dstOffset, width,
1071 width, height, srcSwap, false, srcFunc, WriteCMAP8);
1092 \param width The width (in pixels) of each row.
1101 color_space srcColorSpace, color_space dstColorSpace, int32 width,
1106 BPoint(0, 0), BPoint(0, 0), width, height);
1121 \param width The width (in pixels) to convert.
1131 BPoint dstOffset, int32 width, int32 height)
1134 || width < 0 || height < 0 || srcBytesPerRow < 0 || dstBytesPerRow < 0)
1143 dstColorSpace, srcOffset, dstOffset, width, height,
1151 dstOffset, width, height, srcColorSpace == B_RGB48_BIG,
1158 dstOffset, width, height, false, NULL);
1164 dstOffset, width, height, false, NULL);
1169 32, srcColorSpace, dstColorSpace, srcOffset, dstOffset, width,
1176 dstOffset, width, height, false, NULL);
1181 24, srcColorSpace, dstColorSpace, srcOffset, dstOffset, width,
1187 24, srcColorSpace, dstColorSpace, srcOffset, dstOffset, width,
1194 16, srcColorSpace, dstColorSpace, srcOffset, dstOffset, width,
1202 dstOffset, width, height, srcColorSpace == B_RGBA15_BIG, NULL);
1208 16, srcColorSpace, dstColorSpace, srcOffset, dstOffset, width,
1214 8, srcColorSpace, dstColorSpace, srcOffset, dstOffset, width,
1220 1, srcColorSpace, dstColorSpace, srcOffset, dstOffset, width,
1228 dstOffset, width, height, false, ReadCMAP8);