Searched refs:nHex (Results 1 – 10 of 10) sorted by relevance
/trunk/main/svtools/source/filter/ixpm/ |
H A D | xpmread.cxx | 444 sal_uInt8 nHex, nTemp; in ImplGetRGBHex() local 448 nHex = (*pPtr++) - '0'; in ImplGetRGBHex() 449 if ( nHex > 9 ) in ImplGetRGBHex() 450 nHex = ((nHex - 'A' + '0') & 7) + 10; in ImplGetRGBHex() 455 nHex = ( nHex << 4 ) + nTemp; in ImplGetRGBHex() 458 *pDest++ = (sal_uInt8)nHex; in ImplGetRGBHex()
|
/trunk/main/sw/inc/ |
H A D | shellio.hxx | 525 SvStream& OutHex( SvStream& rStrm, sal_uLong nHex, sal_uInt8 nLen = 2 ); 527 inline SvStream& OutHex4( SvStream& rStrm, sal_uInt16 nHex ) in OutHex4() argument 528 { return OutHex( rStrm, nHex, 4 ); } in OutHex4() 530 …inline SvStream& OutHex( sal_uInt16 nHex, sal_uInt8 nLen = 2 ) { return OutHex( Strm(), nHex,… in OutHex() argument 531 inline SvStream& OutHex4( sal_uInt16 nHex ) { return OutHex( Strm(), nHex, 4 ); } in OutHex4() argument
|
/trunk/main/svtools/source/svrtf/ |
H A D | rtfout.cxx | 184 SvStream& RTFOutFuncs::Out_Hex( SvStream& rStream, sal_uLong nHex, sal_uInt8 nLen ) in Out_Hex() argument 196 *(--pStr) = (sal_Char)(nHex & 0xf ) + 48; in Out_Hex() 199 nHex >>= 4; in Out_Hex()
|
/trunk/main/sw/source/filter/writer/ |
H A D | writer.cxx | 260 SvStream& Writer::OutHex( SvStream& rStrm, sal_uLong nHex, sal_uInt8 nLen ) in OutHex() argument 266 *(--pStr) = (sal_Char)(nHex & 0xf ) + 48; in OutHex() 269 nHex >>= 4; in OutHex()
|
/trunk/main/svtools/source/svhtml/ |
H A D | htmlout.cxx | 568 SvStream& HTMLOutFuncs::Out_Hex( SvStream& rStream, sal_uLong nHex, sal_uInt8 nLen, in Out_Hex() argument 581 *(--pStr) = (sal_Char)(nHex & 0xf ) + 48; in Out_Hex() 584 nHex >>= 4; in Out_Hex()
|
/trunk/main/sw/source/filter/ww8/ |
H A D | rtfexport.cxx | 847 OString RtfExport::OutHex(sal_uLong nHex, sal_uInt8 nLen) in OutHex() argument 859 *(--pStr) = (sal_Char)(nHex & 0xf ) + 48; in OutHex() 862 nHex >>= 4; in OutHex()
|
H A D | rtfexport.hxx | 174 static rtl::OString OutHex(sal_uLong nHex, sal_uInt8 nLen);
|
/trunk/main/svtools/inc/svtools/ |
H A D | rtfout.hxx | 57 static SvStream& Out_Hex( SvStream&, sal_uLong nHex, sal_uInt8 nLen );
|
H A D | htmlout.hxx | 78 SVT_DLLPUBLIC static SvStream& Out_Hex( SvStream&, sal_uLong nHex, sal_uInt8 nLen,
|
/trunk/main/sw/source/filter/html/ |
H A D | css1atr.cxx | 182 static void ConvToHex( sal_uInt16 nHex, ByteString& rStr ) in ConvToHex() argument 190 *(--pStr) = (sal_Char)(nHex & 0xf ) + 48; in ConvToHex() 193 nHex >>= 4; in ConvToHex()
|
Completed in 79 milliseconds