/aoo42x/main/oox/inc/oox/helper/ |
H A D | helper.hxx | 238 … static void convertLittleEndian( sal_Int16& rnValue ) { swap2( reinterpret_cast< sal_uInt8* >( … in convertLittleEndian() argument 239 … static void convertLittleEndian( sal_uInt16& rnValue ) { swap2( reinterpret_cast< sal_uInt8* >( … in convertLittleEndian() argument 240 … static void convertLittleEndian( sal_Int32& rnValue ) { swap4( reinterpret_cast< sal_uInt8* >( … in convertLittleEndian() argument 241 … static void convertLittleEndian( sal_uInt32& rnValue ) { swap4( reinterpret_cast< sal_uInt8* >( … in convertLittleEndian() argument 242 … static void convertLittleEndian( sal_Int64& rnValue ) { swap8( reinterpret_cast< sal_uInt8* >( … in convertLittleEndian() argument 243 … static void convertLittleEndian( sal_uInt64& rnValue ) { swap8( reinterpret_cast< sal_uInt8* >( … in convertLittleEndian() argument
|
/aoo42x/main/sc/source/filter/excel/ |
H A D | xistream.cxx | 613 XclImpStream& XclImpStream::operator>>( sal_Int8& rnValue ) in operator >>() argument 618 mxDecrypter->Read( mrStrm, &rnValue, 1 ); in operator >>() 620 mrStrm >> rnValue; in operator >>() 631 mxDecrypter->Read( mrStrm, &rnValue, 1 ); in operator >>() 633 mrStrm >> rnValue; in operator >>() 650 mrStrm >> rnValue; in operator >>() 664 rnValue = SVBT16ToShort( pnBuffer ); in operator >>() 667 mrStrm >> rnValue; in operator >>() 684 mrStrm >> rnValue; in operator >>() 698 rnValue = SVBT32ToUInt32( pnBuffer ); in operator >>() [all …]
|
H A D | xechart.cxx | 190 bool lclConvertTimeValue( const XclExpRoot& rRoot, sal_uInt16& rnValue, const Any& rAny, sal_uInt16… in lclConvertTimeValue() argument 195 rnValue = lclGetTimeValue( rRoot, fSerialDate, nTimeUnit ); in lclConvertTimeValue() 211 bool lclConvertTimeInterval( sal_uInt16& rnValue, sal_uInt16& rnTimeUnit, const Any& rAny ) in lclConvertTimeInterval() argument 217 rnValue = ::limit_cast< sal_uInt16, sal_Int32 >( aInterval.Number, 1, SAL_MAX_UINT16 ); in lclConvertTimeInterval()
|
/aoo42x/main/oox/source/core/ |
H A D | binarycodec.cxx | 44 inline void lclRotateLeft( Type& rnValue, size_t nBits ) in lclRotateLeft() argument 47 rnValue = static_cast< Type >( (rnValue << nBits) | (rnValue >> (sizeof( Type ) * 8 - nBits)) ); in lclRotateLeft() 52 inline void lclRotateLeft( Type& rnValue, size_t nBits, size_t nWidth ) in lclRotateLeft() argument 56 rnValue = static_cast< Type >( in lclRotateLeft() 57 ((rnValue << nBits) | ((rnValue & nMask) >> (nWidth - nBits))) & nMask ); in lclRotateLeft()
|
/aoo42x/main/filter/source/msfilter/ |
H A D | mscodec.cxx | 52 inline void lclRotateLeft( Type& rnValue, int nBits ) in lclRotateLeft() argument 57 rnValue = static_cast< Type >( (rnValue << nBits) | (rnValue >> (sizeof( Type ) * 8 - nBits)) ); in lclRotateLeft() 62 inline void lclRotateLeft( Type& rnValue, sal_uInt8 nBits, sal_uInt8 nWidth ) in lclRotateLeft() argument 66 rnValue = static_cast< Type >( in lclRotateLeft() 67 ((rnValue << nBits) | ((rnValue & nMask) >> (nWidth - nBits))) & nMask ); in lclRotateLeft()
|
/aoo42x/main/sc/source/filter/inc/ |
H A D | xistream.hxx | 343 XclImpStream& operator>>( sal_Int8& rnValue ); 344 XclImpStream& operator>>( sal_uInt8& rnValue ); 345 XclImpStream& operator>>( sal_Int16& rnValue ); 346 XclImpStream& operator>>( sal_uInt16& rnValue ); 347 XclImpStream& operator>>( sal_Int32& rnValue ); 348 XclImpStream& operator>>( sal_uInt32& rnValue );
|
/aoo42x/main/sc/source/ui/view/ |
H A D | olinewin.cxx | 721 bool lcl_RotateValue( size_t& rnValue, size_t nMin, size_t nMax, bool bForward ) in lcl_RotateValue() argument 728 if ( rnValue < nMax ) in lcl_RotateValue() 729 ++rnValue; in lcl_RotateValue() 732 rnValue = nMin; in lcl_RotateValue() 738 if ( rnValue > nMin ) in lcl_RotateValue() 739 --rnValue; in lcl_RotateValue() 742 rnValue = nMax; in lcl_RotateValue()
|
/aoo42x/main/sc/source/core/tool/ |
H A D | interpr2.cxx | 2486 sal_Bool lcl_GetArabicValue( sal_Unicode cChar, sal_uInt16& rnValue, sal_Bool& rbIsDec ) in lcl_GetArabicValue() argument 2491 case 'M': rnValue = 1000; rbIsDec = sal_True; break; in lcl_GetArabicValue() 2492 case 'D': rnValue = 500; rbIsDec = sal_False; break; in lcl_GetArabicValue() 2493 case 'C': rnValue = 100; rbIsDec = sal_True; break; in lcl_GetArabicValue() 2494 case 'L': rnValue = 50; rbIsDec = sal_False; break; in lcl_GetArabicValue() 2495 case 'X': rnValue = 10; rbIsDec = sal_True; break; in lcl_GetArabicValue() 2496 case 'V': rnValue = 5; rbIsDec = sal_False; break; in lcl_GetArabicValue() 2497 case 'I': rnValue = 1; rbIsDec = sal_True; break; in lcl_GetArabicValue()
|
/aoo42x/main/sfx2/source/doc/ |
H A D | oleprops.cxx | 749 bool SfxOleSection::GetInt32Value( sal_Int32& rnValue, sal_Int32 nPropId ) const in GetInt32Value() argument 755 rnValue = pProp->GetValue(); in GetInt32Value()
|
H A D | oleprops.hxx | 286 bool GetInt32Value( sal_Int32& rnValue, sal_Int32 nPropId ) const;
|