Home
last modified time | relevance | path

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

/AOO42X/main/xmerge/java/pexcel/src/main/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/
H A DFontDescription.java44 private byte[] dwHeight = new byte[2]; field in FontDescription
63 this.dwHeight = EndianConverter.writeShort((short) (fmt.getFontSize()*20)); in FontDescription()
161 if (EndianConverter.readShort(dwHeight) != in compareTo()
162 EndianConverter.readShort(rhs.dwHeight)) in compareTo()
204 return EndianConverter.readShort(dwHeight)/20; in getFontSize()
230 int numOfBytesRead = input.read(dwHeight); in read()
245 Debug.log(Debug.TRACE,"\tdwHeight : "+ EndianConverter.readShort(dwHeight) + in read()
260 output.write(dwHeight); in write()
/AOO42X/main/canvas/source/directx/
H A Ddx_5rm.cxx285 const std::size_t dwBitmapSize(aSurfaceDesc.dwWidth*aSurfaceDesc.dwHeight*4); in dumpSurface()
292 pDest += aSurfaceDesc.dwHeight*dwDestPitch; in dumpSurface()
293 for(sal_uInt32 y=0; y<aSurfaceDesc.dwHeight; ++y) in dumpSurface()
306 bitmapInfo.biHeight = aSurfaceDesc.dwHeight; in dumpSurface()
701 sal_uInt32 dwHeight, in fillRect() argument
708 pDest[((dwHeight-1)*dwPitch)+i]=dwColor; in fillRect()
711 for(sal_uInt32 j=0; j<dwHeight; ++j) in fillRect()
755 …aSurfaceDesc.dwHeight = ::std::min(deviceDesc.dwMaxTextureHeight,::canvas::tools::nextPow2(rSize.g… in DXSurface()
787 maSize.setY(aSurfaceDesc.dwHeight); in DXSurface()
852 aSurfaceDesc.dwHeight, in selectTexture()
[all …]
H A Ddx_9rm.cxx287 sal_uInt32 dwHeight, in fillRect() argument
294 pDest[((dwHeight-1)*dwPitch)+i]=dwColor; in fillRect()
297 for(sal_uInt32 j=0; j<dwHeight; ++j) in fillRect()
H A Ddx_surfacebitmap.cxx486 … imdebug("bgra w=%d h=%d %p", aSurfaceDesc.dwWidth, aSurfaceDesc.dwHeight, aSurfaceDesc.lpSurface); in imageDebugger()