Lines Matching refs:mpInflateInBuf
110 sal_uInt8* mpInflateInBuf; // as big as the size of a scanline + alphachannel + 1 member in vcl::PNGReaderImpl
205 mpInflateInBuf ( NULL ), in PNGReaderImpl()
265 delete[] mpInflateInBuf; in ~PNGReaderImpl()
434 if ( !mpInflateInBuf ) // taking care that the header has properly been read in GetBitmapEx()
663 mpInflateInBuf = new (std::nothrow) sal_uInt8[ mnScansize ]; in ImplReadHeader()
664 mpScanCurrent = mpInflateInBuf; in ImplReadHeader()
667 if ( !mpInflateInBuf || !mpScanPrior ) in ImplReadHeader()
961 sal_Int32 nToRead = mnScansize - (mpScanCurrent - mpInflateInBuf); in ImplReadIDAT()
975 mpScanCurrent = mpInflateInBuf; in ImplReadIDAT()
1071 const sal_uInt8* const pScanEnd = mpInflateInBuf + mnScansize; in ImplApplyFilter()
1073 sal_uInt8 nFilterType = *mpInflateInBuf; // the filter type may change each scanline in ImplApplyFilter()
1083 sal_uInt8* p1 = mpInflateInBuf + 1; in ImplApplyFilter()
1096 sal_uInt8* p1 = mpInflateInBuf + 1; in ImplApplyFilter()
1110 sal_uInt8* p1 = mpInflateInBuf + 1; in ImplApplyFilter()
1129 sal_uInt8* p1 = mpInflateInBuf + 1; in ImplApplyFilter()
1168 rtl_copyMemory( mpScanPrior, mpInflateInBuf, mnScansize ); in ImplApplyFilter()
1187 const sal_uInt8* pTmp = mpInflateInBuf + 1; in ImplDrawScanline()