Home
last modified time | relevance | path

Searched refs:pPic (Results 1 – 6 of 6) sorted by relevance

/AOO42X/main/sw/source/filter/ww8/
H A Dww8graf2.cxx247 extern void WW8PicShadowToReal( WW8_PIC_SHADOW* pPicS, WW8_PIC* pPic );
473 void SwWW8ImplReader::PicRead(SvStream *pDataStream, WW8_PIC *pPic, in PicRead() argument
480 WW8PicShadowToReal( &aPicS, pPic ); in PicRead()
482 pDataStream->Read( pPic, 0x2E); in PicRead()
485 pDataStream->Read( &pPic->rgbrc[i], bVer67 ? 2 : 4); in PicRead()
486 *pDataStream >> pPic->dxaOrigin; in PicRead()
487 *pDataStream >> pPic->dyaOrigin; in PicRead()
755 void WW8PicShadowToReal( WW8_PIC_SHADOW * pPicS, WW8_PIC * pPic ) in WW8PicShadowToReal() argument
757 pPic->lcb = SVBT32ToUInt32( pPicS->lcb ); in WW8PicShadowToReal()
758 pPic->cbHeader = SVBT16ToShort( pPicS->cbHeader ); in WW8PicShadowToReal()
[all …]
H A Dww8graf.hxx100 void WW8FSPAShadowToReal( WW8_FSPA_SHADOW* pFSPAS, WW8_FSPA* pPic );
H A Dww8par.hxx1741 static void PicRead( SvStream *pDataStream, WW8_PIC *pPic, bool bVer67);
/AOO42X/main/sw/source/filter/ww1/
H A Dw1filter.cxx1765 static sal_uLong GuessPicSize(W1_PIC* pPic) in GuessPicSize() argument
1767 sal_uInt16 maxx = pPic->mfp.xExtGet(); in GuessPicSize()
1769 sal_uInt16 maxy = pPic->mfp.yExtGet(); in GuessPicSize()
1780 long nSize = pPic->lcbGet() - (sizeof(*pPic)-sizeof(pPic->rgb)); in WriteBmp()
1781 sal_uInt8* p = pPic->rgbGet(); in WriteBmp()
1782 sal_uInt16 maxx = pPic->mfp.xExtGet(); in WriteBmp()
1784 sal_uInt16 maxy = pPic->mfp.yExtGet(); in WriteBmp()
1919 switch (mm = pPic->mfp.mmGet()) in Out()
1924 aOut.Write(pPic->rgbGet(), pPic->lcbGet() - in Out()
1925 (sizeof(*pPic)-sizeof(pPic->rgb))); in Out()
[all …]
H A Dw1class.cxx410 : bOK(false), pPic(0) in Ww1Picture()
417 if ((pPic = (W1_PIC*)(new sal_uInt8[SVBT32ToUInt32(lcb)])) != NULL) in Ww1Picture()
419 … if (rStream.Read(pPic, SVBT32ToUInt32(lcb)) == (sal_uLong)SVBT32ToUInt32(lcb)) in Ww1Picture()
421 … DBG_ASSERT(pPic->cbHeaderGet()==sizeof(*pPic)-sizeof(pPic->rgb), "Ww1Picture"); in Ww1Picture()
H A Dw1class.hxx838 W1_PIC* pPic; member in Ww1Picture