Lines Matching refs:nCount

831 		sal_uInt16	nByteCount, nCount, nSrcBPL, nDestBPL;  in ReadPixMapEtc()  local
873 nCount = ( (sal_uInt16)nFlagCounterByte ) + 1; in ReadPixMapEtc()
874 for ( i = 0; i < nCount; i++ ) in ReadPixMapEtc()
880 nByteCount -= 1 + nCount; in ReadPixMapEtc()
884 nCount = ( 1 - ( ( (sal_uInt16)nFlagCounterByte ) | 0xff00 ) ); in ReadPixMapEtc()
886 for ( i = 0; i < nCount; i++ ) in ReadPixMapEtc()
900 sal_uInt16 nByteCount, nCount, nDestBPL,nD; in ReadPixMapEtc() local
942 nCount=((sal_uInt16)nFlagCounterByte)+1; 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()
945 for (i=0; i<nCount; i++) // this case. Have a look at 32bit, there I changed the in ReadPixMapEtc()
956 nCount=(1-(((sal_uInt16)nFlagCounterByte)|0xff00)); in ReadPixMapEtc()
957 if ( nCount + nx > nWidth ) in ReadPixMapEtc()
958 nCount = nWidth - nx; in ReadPixMapEtc()
963 for (i=0; i<nCount; i++) in ReadPixMapEtc()
977 sal_uInt16 nByteCount, nCount; in ReadPixMapEtc() local
1037 nCount = ( (sal_uInt16)nFlagCounterByte ) + 1; in ReadPixMapEtc()
1038 if ( ( i + nCount ) > (sal_uInt32)( nWidth * nCmpCount ) ) in ReadPixMapEtc()
1039 nCount = (sal_uInt16)( nWidth * nCmpCount - i ); in ReadPixMapEtc()
1040 while( nCount-- ) in ReadPixMapEtc()
1048 nCount = ( 1 - ( ( (sal_uInt16)nFlagCounterByte ) | 0xff00 ) ); in ReadPixMapEtc()
1049 if ( ( i + nCount ) > (sal_uInt32)( nWidth * nCmpCount ) ) in ReadPixMapEtc()
1050 nCount = (sal_uInt16)( nWidth * nCmpCount - i ); in ReadPixMapEtc()
1052 while( nCount-- ) in ReadPixMapEtc()