Lines Matching refs:mnBytesPerRow
59 , mnBytesPerRow(0) in AquaSalBitmap()
146 …( mnWidth, mnHeight, mnBits, mnBytesPerRow, maPalette, maUserBuffer.get(), rSourceBitmap.mnBits, r… in Create()
194 sal_uInt32 nContextBytesPerRow = mnBytesPerRow; in CreateContext()
220 mnBits, mnBytesPerRow, maPalette, maUserBuffer.get() ); in CreateContext()
248 mnBytesPerRow = 0; in AllocateUserData()
252 case 1: mnBytesPerRow = (mnWidth + 7) >> 3; break; in AllocateUserData()
253 case 4: mnBytesPerRow = (mnWidth + 1) >> 1; break; in AllocateUserData()
254 case 8: mnBytesPerRow = mnWidth; break; in AllocateUserData()
255 case 16: mnBytesPerRow = mnWidth << 1; break; in AllocateUserData()
256 case 24: mnBytesPerRow = (mnWidth << 1) + mnWidth; break; in AllocateUserData()
257 case 32: mnBytesPerRow = mnWidth << 2; break; in AllocateUserData()
265 if( mnBytesPerRow ) in AllocateUserData()
266 maUserBuffer.reset( new sal_uInt8[mnBytesPerRow * mnHeight] ); in AllocateUserData()
272 mnBytesPerRow = 0; in AllocateUserData()
671 pBuffer->mnScanlineSize = mnBytesPerRow; in AcquireBuffer()
815 pSource += nY * mnBytesPerRow; in CreateColorMask()
827 pSource += mnBytesPerRow; in CreateColorMask()