Lines Matching refs:nWidth

264 			if ( nx == nWidth ) break;					\
266 if ( nx == nWidth ) break; \
268 if ( nx == nWidth ) break; \
270 if ( nx == nWidth ) break; \
272 if ( nx == nWidth ) break; \
274 if ( nx == nWidth ) break; \
276 if ( nx == nWidth ) break; \
281 if ( nx == nWidth ) break; \
283 if ( nx == nWidth ) break; \
285 if ( nx == nWidth ) break; \
290 if ( nx == nWidth ) break; \
714 sal_uInt16 nRowBytes, nBndX, nBndY, nWidth, nHeight, nVersion, nPackType, nPixelType, in ReadPixMapEtc() local
731 *pPict >> nRowBytes >> nBndY >> nBndX >> nHeight >> nWidth; in ReadPixMapEtc()
733 nWidth = nWidth - nBndX; in ReadPixMapEtc()
749 aBitmap = Bitmap( Size( nWidth, nHeight ), nDstBitCount ); in ReadPixMapEtc()
782 aBitmap = Bitmap( Size( nWidth, nHeight ), 1 ); in ReadPixMapEtc()
833 if ( nPixelSize == 1 ) nSrcBPL = ( nWidth + 7 ) >> 3; in ReadPixMapEtc()
834 else if ( nPixelSize == 2 ) nSrcBPL = ( nWidth + 3 ) >> 2; in ReadPixMapEtc()
835 else if ( nPixelSize == 4 ) nSrcBPL = ( nWidth + 1 ) >> 1; in ReadPixMapEtc()
836 else nSrcBPL = nWidth; in ReadPixMapEtc()
849 if ( nx < nWidth ) in ReadPixMapEtc()
877 if ( nx < nWidth ) in ReadPixMapEtc()
888 if ( nx < nWidth ) in ReadPixMapEtc()
903 if ( nRowBytes < 2 * nWidth ) in ReadPixMapEtc()
906 nDestBPL = ( ( 3 * nWidth ) + 0x0003 ) & 0xfffc; in ReadPixMapEtc()
913 for ( i = 0; i < nWidth; i++ ) in ReadPixMapEtc()
921 nDataSize += ( (sal_uLong)nWidth ) * 2; in ReadPixMapEtc()
937 while ( nx != nWidth ) in ReadPixMapEtc()
943 if ( nCount + nx > nWidth) // SJ: the RLE decoding seems not to be correct here, in ReadPixMapEtc()
944 nCount = nWidth - nx; // I don't want to change this until I have a bugdoc for in ReadPixMapEtc()
957 if ( nCount + nx > nWidth ) in ReadPixMapEtc()
958 nCount = nWidth - nx; in ReadPixMapEtc()
982 if ( nRowBytes != 4*nWidth ) in ReadPixMapEtc()
991 for ( nx = 0; nx < nWidth; nx++ ) in ReadPixMapEtc()
996 nDataSize += ( (sal_uLong)nWidth ) * 4; in ReadPixMapEtc()
1004 for ( nx = 0; nx < nWidth; nx++ ) in ReadPixMapEtc()
1009 nDataSize += ( (sal_uLong)nWidth ) * 3; in ReadPixMapEtc()
1016 sal_uInt8* pScanline = new sal_uInt8[ nWidth * nCmpCount ]; in ReadPixMapEtc()
1032 while( i < (sal_uInt32)( nWidth * nCmpCount ) ) in ReadPixMapEtc()
1038 if ( ( i + nCount ) > (sal_uInt32)( nWidth * nCmpCount ) ) in ReadPixMapEtc()
1039 nCount = (sal_uInt16)( nWidth * nCmpCount - i ); in ReadPixMapEtc()
1049 if ( ( i + nCount ) > (sal_uInt32)( nWidth * nCmpCount ) ) in ReadPixMapEtc()
1050 nCount = (sal_uInt16)( nWidth * nCmpCount - i ); in ReadPixMapEtc()
1058 pTmp += nWidth; in ReadPixMapEtc()
1059 for ( nx = 0; nx < nWidth; pTmp++ ) in ReadPixMapEtc()
1060 pAcc->SetPixel( ny, nx++, BitmapColor( *pTmp, pTmp[ nWidth ], pTmp[ 2 * nWidth ] ) ); in ReadPixMapEtc()