Searched refs:nExp (Results 1 – 13 of 13) sorted by relevance
/aoo42x/main/sal/rtl/source/ |
H A D | math.cxx | 57 if ( nExp < 0 ) in getN10Exp() 64 else if ( nExp > 0 ) in getN10Exp() 352 int nExp = 0; in doubleToString() local 390 if ( nExp < -4 || nExp >= nDecPlaces ) in doubleToString() 417 nExp++; in doubleToString() 447 if( nExp < 0 ) in doubleToString() 622 nExp = -nExp; in doubleToString() 630 nExp %= 100; in doubleToString() 844 nExp = nExp * 10 + i; in stringToDouble() 849 nExp = -nExp; in stringToDouble() [all …]
|
/aoo42x/main/basic/source/sbx/ |
H A D | sbxscan.cxx | 286 short nExp = 0; // Exponent in myftoa() local 298 nExp = 0; in myftoa() 305 nDig = nDig + nExp; in myftoa() 307 nDig = nExp + 1; in myftoa() 313 ++nExp; in myftoa() 320 if( nExp < 0 ) in myftoa() 325 i = -nExp - 1; in myftoa() 331 nDec = nExp+1; in myftoa() 366 *pBuf++ =( nExp < 0 ) ?( (nExp = -nExp ), '-' ) : '+'; in myftoa() 371 nExp %= 100; in myftoa() [all …]
|
/aoo42x/main/sc/source/filter/dif/ |
H A D | difimp.cxx | 659 sal_Int32 nExp = 0; in ScanFloatVal() local 756 if( nExp < nExpLimit ) in ScanFloatVal() 758 nExp *= 10; in ScanFloatVal() 759 nExp += ( sal_uInt16 ) ( cAkt - '0' ); in ScanFloatVal() 780 if( nExp < ( 0xFFFF / 10 ) ) in ScanFloatVal() 782 nExp *= 10; in ScanFloatVal() 783 nExp += ( sal_uInt16 ) ( cAkt - '0' ); in ScanFloatVal() 822 nExp *= -1; in ScanFloatVal() 824 if( nExp != 0 ) in ScanFloatVal() 825 fNewVal *= pow( 10.0, ( double ) nExp ); in ScanFloatVal()
|
/aoo42x/main/sc/source/filter/ftools/ |
H A D | ftools.cxx | 104 register sal_Int32 nExp; 105 nExp = pDouble10[ 9 ] & 0x7F; 106 nExp <<= 8; 107 nExp += pDouble10[ 8 ]; 108 nExp -= 16446; 110 lfDouble *= pow( 2.0, static_cast< double >( nExp ) );
|
/aoo42x/main/sc/source/ui/Accessibility/ |
H A D | AccessibleCsvControl.cxx | 309 sal_Int32 nExp = 1; in lcl_GetApiPos() local 310 while( nStart >= nExp ) in lcl_GetApiPos() 312 nApiPos += nStart - nExp + 1; in lcl_GetApiPos() 313 nExp *= 10; in lcl_GetApiPos() 322 sal_Int32 nExp = 10; in lcl_GetRulerPos() local 329 nRulerPos = nExp; in lcl_GetRulerPos() 330 nExp *= 10; in lcl_GetRulerPos() 332 nApiLimit = lcl_GetApiPos( nExp ); in lcl_GetRulerPos() 341 DBG_ASSERT( nExp > 0, "lcl_ExpandSequence - invalid value" ); in lcl_ExpandSequence() 342 rSeq.realloc( rSeq.getLength() + nExp ); in lcl_ExpandSequence() [all …]
|
/aoo42x/main/sw/source/core/bastyp/ |
H A D | calc.cxx | 1287 int nExp = 0; in Term() local 1290 while( fNum < 1.0 ) fNum *= 10.0, --nExp; in Term() 1291 while( fNum >= 10.0 ) fNum /= 10.0, ++nExp; in Term() 1293 nExp = 15 - nExp; in Term() 1294 if( nExp > 15 ) in Term() 1295 nExp = 15; in Term() 1296 else if( nExp <= 1 ) in Term() 1297 nExp = 0; in Term() 1298 fVal = floor( fVal+ 0.5 + nRoundVal[ nExp ] ); in Term()
|
/aoo42x/main/scaddins/source/analysis/ |
H A D | analysishelper.cxx | 718 sal_Int32 nExp = 0; in ParseDouble() local 791 nExp++; // just multiply num with 10... ;-) in ParseDouble() 823 nExp = GetVal( c ); in ParseDouble() 837 nExp *= 10; in ParseDouble() 838 nExp += GetVal( c ); in ParseDouble() 839 if( nExp > nMaxExp ) in ParseDouble() 859 nExp = -nExp; in ParseDouble() 861 if( nLog10 + nExp > nMaxExp ) in ParseDouble() 864 fInt = ::rtl::math::pow10Exp( fInt, nExp ); in ParseDouble()
|
/aoo42x/main/sal/inc/rtl/ |
H A D | math.hxx | 184 inline double pow10Exp(double fValue, int nExp) in pow10Exp() argument 186 return rtl_math_pow10Exp(fValue, nExp); in pow10Exp()
|
H A D | math.h | 397 double SAL_CALL rtl_math_pow10Exp(double fValue, int nExp) SAL_THROW_EXTERN_C();
|
/aoo42x/main/xmloff/source/style/ |
H A D | xmlnumfe.cxx | 657 sal_Bool bGrouping, sal_Int32 nExp ) in WriteScientificElement_Impl() argument 682 if ( nExp >= 0 ) in WriteScientificElement_Impl() 685 OUString::valueOf( nExp ) ); in WriteScientificElement_Impl()
|
/aoo42x/main/svl/source/numbers/ |
H A D | zformat.cxx | 2522 sal_Int32 nExp = ExpStr.ToInt32() * nExpSign; in GetOutputString() local 2523 nExp -= sal_Int32(rInfo.nCntPre)-1; in GetOutputString() 2524 if ( nExp < 0 ) in GetOutputString() 2527 nExp = -nExp; in GetOutputString() 2531 ExpStr = String::CreateFromInt32( nExp ); in GetOutputString()
|
H A D | zforfind.cxx | 193 int nExp = 0; in StringToDouble() local 207 --nExp; in StringToDouble() 212 return fNum + ::rtl::math::pow10Exp( fFrac, nExp ); in StringToDouble()
|
/aoo42x/main/xmloff/inc/xmloff/ |
H A D | xmlnumfe.hxx | 72 sal_Bool bGrouping, sal_Int32 nExp );
|
Completed in 114 milliseconds