Home
last modified time | relevance | path

Searched refs:nScaledHeight (Results 1 – 4 of 4) sorted by relevance

/dports/editors/libreoffice6/libreoffice-6.4.7.2/vcl/quartz/
H A Dsalgdiutils.cxx131 float nScaledHeight = mnHeight * fScale; in CheckContext() local
133 …st CGSize aLayerSize = { static_cast<CGFloat>(nScaledWidth), static_cast<CGFloat>(nScaledHeight) }; in CheckContext()
136 void* pRawData = std::malloc(nBytesPerRow * nScaledHeight); in CheckContext()
143 … pRawData, nScaledWidth, nScaledHeight, 8, nBytesPerRow, GetSalData()->mxRGBSpace, nFlags)); in CheckContext()
163 CGContextTranslateCTM(maContextHolder.get(), 0, nScaledHeight); in CheckContext()
/dports/editors/libreoffice/libreoffice-7.2.6.2/vcl/osx/
H A Dsalgdiutils.cxx176 float nScaledHeight = mnHeight * fScale; in checkContext() local
178 …st CGSize aLayerSize = { static_cast<CGFloat>(nScaledWidth), static_cast<CGFloat>(nScaledHeight) }; in checkContext()
184 … nullptr, nScaledWidth, nScaledHeight, 8, nBytesPerRow, GetSalData()->mxRGBSpace, nFlags)); in checkContext()
192 … nullptr, nScaledWidth, nScaledHeight, 8, nBytesPerRow, GetSalData()->mxRGBSpace, nFlags)); in checkContext()
209 CGContextTranslateCTM(maContextHolder.get(), 0, nScaledHeight); in checkContext()
H A Dsalmacos.cxx328 size_t nScaledHeight = nHeight * fScale; in SetTarget() local
330 m_nBufferLongs = (nScaledHeight * nBytesPerRow + sizeof(sal_uLong) - 1) / sizeof(sal_uLong); in SetTarget()
335 m_xMaskContext = CGBitmapContextCreate(m_pMaskBuffer, nScaledWidth, nScaledHeight, in SetTarget()
350 m_xTempContext = CGBitmapContextCreate(m_pTempBuffer, nScaledWidth, nScaledHeight, in SetTarget()
510 size_t nScaledHeight = mnHeight * fScale; in SetSize() local
512 …maBitmapContext.set(CGBitmapContextCreate(nullptr, nScaledWidth, nScaledHeight, 8, nBytesPerRow, a… in SetSize()
517 CGSize aLayerSize = { static_cast<CGFloat>(nScaledWidth), static_cast<CGFloat>(nScaledHeight) }; in SetSize()
/dports/editors/libreoffice/libreoffice-7.2.6.2/oox/source/drawingml/
H A Dfillproperties.cxx98 sal_Int32 nScaledHeight = aBitmapEx.GetSizePixel().Height(); in lclCalculateCropPercentage() local
101 sal_Int32 nOrigHeight = (nScaledHeight * (100000 - aFillRect.Y1 - aFillRect.Y2)) / 100000; in lclCalculateCropPercentage()
105 sal_Int32 nTopPercentage = nScaledHeight * aFillRect.Y1 / nOrigHeight; in lclCalculateCropPercentage()
106 sal_Int32 nBottomPercentage = nScaledHeight * aFillRect.Y2 / nOrigHeight; in lclCalculateCropPercentage()