Lines Matching refs:nx

89     short nx,ny;  in read()  local
98 for (nx=0; nx<8; nx++) { in read()
99 if ( (nbyte[ny] & (1<<nx)) != 0 ) nBitCount++; in read()
263 pAcc->SetPixelIndex( ny, nx++, nDat >> 7 ); \
264 if ( nx == nWidth ) break; \
265 pAcc->SetPixelIndex( ny, nx++, nDat >> 6 ); \
266 if ( nx == nWidth ) break; \
267 pAcc->SetPixelIndex( ny, nx++, nDat >> 5 ); \
268 if ( nx == nWidth ) break; \
269 pAcc->SetPixelIndex( ny, nx++, nDat >> 4 ); \
270 if ( nx == nWidth ) break; \
271 pAcc->SetPixelIndex( ny, nx++, nDat >> 3 ); \
272 if ( nx == nWidth ) break; \
273 pAcc->SetPixelIndex( ny, nx++, nDat >> 2 ); \
274 if ( nx == nWidth ) break; \
275 pAcc->SetPixelIndex( ny, nx++, nDat >> 1 ); \
276 if ( nx == nWidth ) break; \
277 pAcc->SetPixelIndex( ny, nx++, nDat ); \
280 pAcc->SetPixelIndex( ny, nx++, nDat >> 6 ); \
281 if ( nx == nWidth ) break; \
282 pAcc->SetPixelIndex( ny, nx++, (nDat>>4)&3);\
283 if ( nx == nWidth ) break; \
284 pAcc->SetPixelIndex( ny, nx++, (nDat>>2)&3 );\
285 if ( nx == nWidth ) break; \
286 pAcc->SetPixelIndex( ny, nx++, nDat & 3); \
289 pAcc->SetPixelIndex( ny, nx++, nDat >> 4 ); \
290 if ( nx == nWidth ) break; \
291 pAcc->SetPixelIndex( ny, nx++, nDat ); \
294 pAcc->SetPixelIndex( ny, nx++, nDat ); \
372 short nx,ny; in ReadPoint() local
374 *pPict >> ny >> nx; in ReadPoint()
376 return Point( (long)nx - aBoundingRect.Left(), in ReadPoint()
418 short nx,ny; in ReadSize() local
420 *pPict >> ny >> nx; in ReadSize()
422 return Size( (long)nx, (long)ny ); in ReadSize()
713 sal_uInt16 ny, nx, nColTabSize; in ReadPixMapEtc() local
843 nx = 0; in ReadPixMapEtc()
849 if ( nx < nWidth ) in ReadPixMapEtc()
877 if ( nx < nWidth ) in ReadPixMapEtc()
888 if ( nx < nWidth ) in ReadPixMapEtc()
910 nx = 0; in ReadPixMapEtc()
919 pAcc->SetPixel( ny, nx++, BitmapColor( nRed, nGreen, nBlue ) ); 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()
951 pAcc->SetPixel( ny, nx++, BitmapColor( nRed, nGreen, nBlue ) ); in ReadPixMapEtc()
957 if ( nCount + nx > nWidth ) in ReadPixMapEtc()
958 nCount = nWidth - nx; in ReadPixMapEtc()
965 pAcc->SetPixel( ny, nx++, BitmapColor( nRed, nGreen, nBlue ) ); in ReadPixMapEtc()
991 for ( nx = 0; nx < nWidth; nx++ ) in ReadPixMapEtc()
994 pAcc->SetPixel( ny, nx, BitmapColor( nRed, nGreen, nBlue) ); in ReadPixMapEtc()
1004 for ( nx = 0; nx < nWidth; nx++ ) in ReadPixMapEtc()
1007 pAcc->SetPixel( ny, nx, BitmapColor( nRed, nGreen, nBlue ) ); 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()