Home
last modified time | relevance | path

Searched refs:fAbsVal (Results 1 – 1 of 1) sorted by path

/trunk/main/svl/source/numbers/ !
H A Dzformat.cxx102 static long GetPrecExp( double fAbsVal ) in GetPrecExp() argument
104 DBG_ASSERT( fAbsVal > 0.0, "GetPrecExp: fAbsVal <= 0.0" ); in GetPrecExp()
105 if ( fAbsVal < 1e-7 || fAbsVal > 1e7 ) in GetPrecExp()
107 return (long) floor( log10( fAbsVal ) ) + 1; in GetPrecExp()
112 while( fAbsVal < 1 ) in GetPrecExp()
114 fAbsVal *= 10; in GetPrecExp()
117 while( fAbsVal >= 10 ) in GetPrecExp()
119 fAbsVal /= 10; in GetPrecExp()

Completed in 31 milliseconds