Home | History | Annotate | Download | only in pdf

Lines Matching refs:rowBytes

35             const int rowBytes = srcRect.width();
36 image = new SkMemoryStream(rowBytes * srcRect.height());
39 memcpy(dst, bitmap.getAddr8(srcRect.fLeft, y), rowBytes);
40 dst += rowBytes;
45 const int rowBytes = srcRect.width();
46 image = new SkMemoryStream(rowBytes * srcRect.height());
51 SkPackBits::Unpack8(dst, srcRect.fLeft, rowBytes,
53 dst += rowBytes;
59 const int rowBytes = (srcRect.width() * 3 + 1) / 2;
61 image = new SkMemoryStream(rowBytes * srcRect.height());
104 const int rowBytes = srcRect.width() * 3;
105 image = new SkMemoryStream(rowBytes * srcRect.height());
120 const int rowBytes = srcRect.width() * 3;
121 image = new SkMemoryStream(rowBytes * srcRect.height());