Home
last modified time | relevance | path

Searched refs:fExponent (Results 1 – 11 of 11) sorted by relevance

/external/icu/icu4c/source/i18n/
Dvisibledigits.cpp41 fExponent = 0; in clear()
62 if (digitPos < fExponent || digitPos >= fExponent + fDigits.length()) { in getDigitByExponent()
66 return ptr[digitPos - fExponent]; in getDigitByExponent()
70 return (fExponent + fDigits.length() > fInterval.getMostSignificantExclusive()); in isOverMaxDigits()
91 int32_t mostSigNonZero = fExponent + fDigits.length(); in computeAbsDoubleValue()
94 int32_t start = leastSig > fExponent ? leastSig : fExponent; in computeAbsDoubleValue()
102 const char *src = &(fDigits.data()[start - fExponent]); in computeAbsDoubleValue()
Dvisibledigits.h36 …VisibleDigits() : fExponent(0), fFlags(0), fAbsIntValue(0), fAbsIntValueSet(FALSE), fAbsDoubleValu… in VisibleDigits()
84 int32_t fExponent; variable
135 return fHasExponent ? &fExponent : NULL; in getExponent()
139 fExponent.clear(); in clear()
150 VisibleDigits fExponent; variable
Ddigitformatter.h97 fExponent.equals(rhs.fExponent)); in equals()
108 DigitFormatterIntOptions fExponent; variable
226 UnicodeString fExponent; variable
Ddigitformatter.cpp29 fIsStandardDigits(TRUE), fExponent("E", -1, US_INV) { in DigitFormatter()
59 fExponent = symbols.getConstSymbol(DecimalFormatSymbols::kExponentialSymbol); in setOtherDecimalFormatSymbols()
155 count += fExponent.countChar32(); in countChar32()
157 exponent, options.fExponent); in countChar32()
257 appendTo.append(fExponent); in format()
262 options.fExponent, in format()
399 (fExponent == rhs.fExponent); in equals()
Ddecimalformatpattern.cpp99 fExponent((UChar)kPatternExponent), in DecimalFormatPatternParser()
123 fExponent = symbols.getConstSymbol( in useSymbols()
267 if (pattern.compare(pos, fExponent.length(), fExponent) == 0) { in applyPatternWithoutExpandAffix()
282 pos += fExponent.length(); in applyPatternWithoutExpandAffix()
Dprecision.cpp167 digits.fExponent = value.getLowerExponent(); in initVisibleDigits()
307 digits.fExponent = exponent; in initVisibleDigits()
409 exponentPrecision.initVisibleDigits(exponent, digits.fExponent, status); in initVisibleDigitsWithExponent()
Ddecimalformatpattern.h95 UnicodeString fExponent; variable
Ddecimfmtimpl.h302 return fOptions.fExponent.fAlwaysShowSign; in isExponentSignAlwaysShown()
305 fOptions.fExponent.fAlwaysShowSign = x; in setExponentSignAlwaysShown()
Ddecimfmtimpl.cpp848 fOptions.fExponent.fAlwaysShowSign = out.fExponentSignAlwaysShown; in applyPattern()
1354 return 1 + (fOptions.fExponent.fAlwaysShowSign ? 1 : 0) + fEffPrecision.fMinExponentDigits; in computeExponentPatternLength()
1500 if (fOptions.fExponent.fAlwaysShowSign) { in toNumberPattern()
/external/jmonkeyengine/engine/src/core/com/jme3/math/
DFastMath.java625 public static float pow(float fBase, float fExponent) { in pow() argument
626 return (float) Math.pow(fBase, fExponent); in pow()
/external/icu/icu4c/source/test/intltest/
Dnumberformat2test.cpp1095 options.fExponent.fAlwaysShowSign = TRUE; in TestSciFormatter()
1111 options.fExponent.fAlwaysShowSign = FALSE; in TestSciFormatter()
2553 options.fExponent.fAlwaysShowSign = TRUE; in TestPluralsAndRoundingScientific()