Home
last modified time | relevance | path

Searched refs:MAX_DIGITS (Results 1 – 10 of 10) sorted by relevance

/external/openssh/openbsd-compat/
Dfmt_scaled.c70 #define MAX_DIGITS (SCALE_LENGTH * 3) /* XXX strlen(sprintf("%lld", -1)? */ macro
123 if (fract_digits >= MAX_DIGITS-1) in scan_scaled()
130 if (++ndigits >= MAX_DIGITS) { in scan_scaled()
/external/icu/icu4c/source/i18n/
Dcompactdecimalformat.cpp35 static const int32_t MAX_DIGITS = 15; variable
88 double divisors[MAX_DIGITS];
382 for (int32_t i = 0; i < MAX_DIGITS; ++i) { in divisors_equal()
700 if (log10Value == MAX_DIGITS) { in populatePower10()
859 UBool definedInCLDR[MAX_DIGITS]; in fillInMissing()
861 for (int32_t i = 0; i < MAX_DIGITS; ++i) { in fillInMissing()
875 for (int32_t i = 0; i < MAX_DIGITS; ++i) { in fillInMissing()
897 int32_t max = inRange ? MAX_DIGITS - 1 : MAX_DIGITS; in computeLog10()
917 cdfUnit = new CDFUnit[MAX_DIGITS]; in createCDFUnit()
Ddigitlst.h42 MAX_DIGITS = MAX_I64_DIGITS, enumerator
48 MAX_DEC_DIGITS = MAX_DIGITS + DIGIT_PADDING + MAX_EXPONENT
Ddigitlst.cpp214 const int32_t MAX_IDX = MAX_DIGITS+2; in formatBase10()
428 char rep[MAX_DIGITS]; in getDouble()
702 char str[MAX_DIGITS+2]; // Leave room for sign and trailing nul. in set()
794 char rep[MAX_DIGITS + 8]; // Extra space for '+', '.', e+NNN, and '\0' (actually +8 is enough) in set()
Ddecimfmt.cpp1410 const int32_t MAX_IDX = MAX_DIGITS+2;
/external/icu/icu4c/source/tools/genrb/
Drbutil.c64 #define MAX_DIGITS 10 macro
97 if(length<MAX_DIGITS){ in itostr()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/math/
DMathContext.java308 private static final int MAX_DIGITS=999999999; // largest value for DIGITS. If increased, field in MathContext
443 if (setdigits>MAX_DIGITS) in MathContext()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DCompactDecimalDataCache.java38 static final int MAX_DIGITS = 15; field in CompactDecimalDataCache
237 new long[MAX_DIGITS], in loadStyle()
270 if (thisIndex >= MAX_DIGITS) { in populateData()
467 byBase = new DecimalFormat.Unit[MAX_DIGITS]; in saveUnit()
DCompactDecimalFormat.java328 if (base >= CompactDecimalDataCache.MAX_DIGITS) { in toAmount()
329 base = CompactDecimalDataCache.MAX_DIGITS - 1; in toAmount()
359 if (divisor.length < CompactDecimalDataCache.MAX_DIGITS) { in otherPluralVariant()
360 …r(debugCreationErrors, "Must have at least " + CompactDecimalDataCache.MAX_DIGITS + " prefix items… in otherPluralVariant()
/external/replicaisland/src/com/replica/replicaisland/
DHudSystem.java34 private static final int MAX_DIGITS = 4; field in HudSystem
110 mCoinDigits = new int[MAX_DIGITS]; in HudSystem()
111 mRubyDigits = new int[MAX_DIGITS]; in HudSystem()
112 mFPSDigits = new int[MAX_DIGITS]; in HudSystem()