Lines Matching refs:mnScansize
122 sal_uInt32 mnScansize; // max size of scanline member in vcl::PNGReaderImpl
660 mnScansize = static_cast< sal_uInt32 >( nScansize64 ); in ImplReadHeader()
663 mpInflateInBuf = new (std::nothrow) sal_uInt8[ mnScansize ]; in ImplReadHeader()
665 mpScanPrior = new (std::nothrow) sal_uInt8[ mnScansize ]; in ImplReadHeader()
961 sal_Int32 nToRead = mnScansize - (mpScanCurrent - mpInflateInBuf); in ImplReadIDAT()
1047 mnScansize = nScanWidth; in ImplPreparePass()
1050 mnScansize = 3 * nScanWidth; in ImplPreparePass()
1053 mnScansize += nScanWidth; in ImplPreparePass()
1056 mnScansize = ( mnScansize*mnPngDepth + 7 ) >> 3; in ImplPreparePass()
1058 ++mnScansize; // scan size also needs room for the filtertype byte in ImplPreparePass()
1059 rtl_zeroMemory( mpScanPrior, mnScansize ); in ImplPreparePass()
1070 OSL_ASSERT( mnScansize >= mnBPP + 1 ); in ImplApplyFilter()
1071 const sal_uInt8* const pScanEnd = mpInflateInBuf + mnScansize; in ImplApplyFilter()
1168 rtl_copyMemory( mpScanPrior, mpInflateInBuf, mnScansize ); in ImplApplyFilter()