Lines Matching refs:nY

1195     const sal_uInt32 nY = mnYpos >> mnPreviewShift;  in ImplDrawScanline()  local
1216 ImplSetAlphaPixel( nY, nX, nCol, mpTransTab[ nCol ] ); in ImplDrawScanline()
1232 ImplSetPixel( nY, nX, nCol ); in ImplDrawScanline()
1248 ImplSetAlphaPixel( nY, nX, *pTmp & 0x0f, mpTransTab[ *pTmp & 0x0f ] ); in ImplDrawScanline()
1253 ImplSetAlphaPixel( nY, nX, ( *pTmp >> 4 ) & 0x0f, mpTransTab[ *pTmp >> 4 ] ); in ImplDrawScanline()
1285 ImplSetAlphaPixel( nY, nX, nCol, mpTransTab[ nCol ] ); in ImplDrawScanline()
1296 ImplSetPixel( nY, nX, *pTmp++ & 0x0f ); in ImplDrawScanline()
1298 ImplSetPixel( nY, nX, ( *pTmp >> 4 ) & 0x0f ); in ImplDrawScanline()
1308 ImplSetPixel( nY, nX, *pTmp >> 6 ); in ImplDrawScanline()
1312 ImplSetPixel( nY, nX, ( *pTmp >> 4 ) & 0x03 ); in ImplDrawScanline()
1316 ImplSetPixel( nY, nX, ( *pTmp >> 2 ) & 0x03 ); in ImplDrawScanline()
1320 ImplSetPixel( nY, nX, *pTmp++ & 0x03 ); in ImplDrawScanline()
1336 ImplSetAlphaPixel( nY, nX, pTmp[ 0 ], pTmp[ 1 ] ); in ImplDrawScanline()
1341 ImplSetAlphaPixel( nY, nX, pTmp[ 0 ], pTmp[ 2 ] ); in ImplDrawScanline()
1349 ImplSetAlphaPixel( nY, nX, *pTmp, mpTransTab[ *pTmp ] ); in ImplDrawScanline()
1354 ImplSetAlphaPixel( nY, nX, *pTmp, mpTransTab[ *pTmp ] ); in ImplDrawScanline()
1364 mpAcc->CopyScanline( nY, pTmp, BMP_FORMAT_8BIT_PAL, nLineBytes ); in ImplDrawScanline()
1370 ImplSetPixel( nY, nX, *pTmp++ ); in ImplDrawScanline()
1376 ImplSetPixel( nY, nX, *pTmp ); in ImplDrawScanline()
1456 … mpAcc->CopyScanline(nY, mpScanline, BMP_FORMAT_24BIT_TC_BGR, maOrigSize.Width() * 3); in ImplDrawScanline()
1457 … mpMaskAcc->CopyScanline(nY, mpScanlineAlpha, BMP_FORMAT_8BIT_PAL, maOrigSize.Width()); in ImplDrawScanline()
1466 nY, in ImplDrawScanline()
1477 nY, in ImplDrawScanline()
1494 nY, in ImplDrawScanline()
1519 ImplSetTranspPixel( nY, nX, BitmapColor( mpColorTable[ nRed ], in ImplDrawScanline()
1536 ImplSetTranspPixel( nY, nX, BitmapColor( mpColorTable[ nRed ], in ImplDrawScanline()
1588 … mpAcc->CopyScanline(nY, mpScanline, BMP_FORMAT_24BIT_TC_BGR, maOrigSize.Width() * 3); in ImplDrawScanline()
1597 nY, in ImplDrawScanline()
1607 nY, in ImplDrawScanline()
1624 nY, in ImplDrawScanline()
1638 void PNGReaderImpl::ImplSetPixel( sal_uInt32 nY, sal_uInt32 nX, const BitmapColor& rBitmapColor ) in ImplSetPixel() argument
1645 mpAcc->SetPixel( nY, nX, rBitmapColor ); in ImplSetPixel()
1650 void PNGReaderImpl::ImplSetPixel( sal_uInt32 nY, sal_uInt32 nX, sal_uInt8 nPalIndex ) in ImplSetPixel() argument
1659 mpAcc->SetPixelIndex( nY, nX, nPalIndex ); in ImplSetPixel()
1664 void PNGReaderImpl::ImplSetTranspPixel( sal_uInt32 nY, sal_uInt32 nX, const BitmapColor& rBitmapCol… in ImplSetTranspPixel() argument
1671 mpAcc->SetPixel( nY, nX, rBitmapColor ); in ImplSetTranspPixel()
1674 mpMaskAcc->SetPixel( nY, nX, mcTranspColor ); in ImplSetTranspPixel()
1676 mpMaskAcc->SetPixel( nY, nX, mcOpaqueColor ); in ImplSetTranspPixel()
1681 void PNGReaderImpl::ImplSetAlphaPixel( sal_uInt32 nY, sal_uInt32 nX, in ImplSetAlphaPixel() argument
1691 mpAcc->SetPixelIndex( nY, nX, nPalIndex ); in ImplSetAlphaPixel()
1692 mpMaskAcc->SetPixelIndex( nY, nX, ~nAlpha ); in ImplSetAlphaPixel()
1697 void PNGReaderImpl::ImplSetAlphaPixel( sal_uInt32 nY, sal_uInt32 nX, in ImplSetAlphaPixel() argument
1705 mpAcc->SetPixel( nY, nX, rBitmapColor ); in ImplSetAlphaPixel()
1706 mpMaskAcc->SetPixelIndex( nY, nX, ~nAlpha ); in ImplSetAlphaPixel()