Home | History | Annotate | Download | only in fpdf_edit

Lines Matching refs:dest_pitch

111     FX_STRSIZE dest_pitch = 0, dest_size = 0, opType = -1;
145 dest_pitch = (BitmapWidth + 7) / 8;
177 dest_pitch = BitmapWidth;
186 dest_pitch = BitmapWidth * 3;
300 dest_buf = FX_Alloc2D(FX_BYTE, dest_pitch, BitmapHeight);
301 dest_size = dest_pitch * BitmapHeight; // Safe since checked alloc returned.
306 FXSYS_memcpy32(pDest, src_buf, dest_pitch);
307 pDest += dest_pitch;
309 pFileWrite->WriteBlock(src_buf, dest_pitch);
315 dest_buf = FX_Alloc2D(FX_BYTE, dest_pitch, BitmapHeight);
316 dest_size = dest_pitch * BitmapHeight; // Safe since checked alloc returned.
318 dest_buf = FX_Alloc(FX_BYTE, dest_pitch);
334 pFileWrite->WriteBlock(pDest, dest_pitch);
337 pDest += dest_pitch;