Lines Matching refs:pData

283 	sal_uInt8* pData;  member in ImplPixelFormat
287 virtual void StartLine( sal_uInt8* pLine ) { pData = pLine; } in StartLine()
299 pData += nPixel << 2; in SkipPixel()
303 const ColorData c = RGB_COLORDATA( pData[1], pData[2], pData[3] ); in ReadPixel()
304 pData += 4; in ReadPixel()
309 *pData++ = 0; in WritePixel()
310 *pData++ = COLORDATA_RED( nColor ); in WritePixel()
311 *pData++ = COLORDATA_GREEN( nColor ); in WritePixel()
312 *pData++ = COLORDATA_BLUE( nColor ); in WritePixel()
322 pData += (nPixel << 1) + nPixel; in SkipPixel()
326 const ColorData c = RGB_COLORDATA( pData[2], pData[1], pData[0] ); in ReadPixel()
327 pData += 3; in ReadPixel()
332 *pData++ = COLORDATA_BLUE( nColor ); in WritePixel()
333 *pData++ = COLORDATA_GREEN( nColor ); in WritePixel()
334 *pData++ = COLORDATA_RED( nColor ); in WritePixel()
351 pData += nPixel; in SkipPixel()
355 …const ColorData c = RGB_COLORDATA( (*pData & 0x7c00) >> 7, (*pData & 0x03e0) >> 2 , (*pData & 0x00… in ReadPixel()
356 pData++; in ReadPixel()
361 *pData++ = ((COLORDATA_RED( nColor ) & 0xf8 ) << 7 ) || in WritePixel()
379 pData += nPixel; in SkipPixel()
383 return mrPalette[ *pData++ ].operator Color().GetColor(); in ReadPixel()
388 *pData++ = static_cast< sal_uInt8 >( mrPalette.GetBestIndex( aColor ) ); in WritePixel()
412 pData = pLine; in StartLine()
418 const BitmapColor& rColor = mrPalette[( pData[mnX >> 1] >> mnShift) & 0x0f]; in ReadPixel()
426 pData[mnX>>1] &= (0xf0 >> mnShift); in WritePixel()
427 pData[mnX>>1] |= (static_cast< sal_uInt8 >( mrPalette.GetBestIndex( aColor ) ) & 0x0f); in WritePixel()
450 pData = pLine; in StartLine()
455 const BitmapColor& rColor = mrPalette[ (pData[mnX >> 3 ] >> ( 7 - ( mnX & 7 ) )) & 1]; in ReadPixel()
463 pData[ mnX >> 3 ] |= 1 << ( 7 - ( mnX & 7 ) ); in WritePixel()
465 pData[ mnX >> 3 ] &= ~( 1 << ( 7 - ( mnX & 7 ) ) ); in WritePixel()