Home
last modified time | relevance | path

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

/external/linux-kselftest/tools/testing/selftests/sysctl/
Dsysctl.sh88 if [ -z $MAX_DIGITS ]; then
89 MAX_DIGITS=$(($PAGE_SIZE/8))
299 LIMIT=$((MAX_DIGITS -1))
315 LIMIT=$((MAX_DIGITS))
407 LIMIT=$((MAX_DIGITS -1))
424 LIMIT=$((MAX_DIGITS))
/external/openssh/openbsd-compat/
Dfmt_scaled.c70 #define MAX_DIGITS (SCALE_LENGTH * 3) /* XXX strlen(sprintf("%lld", -1)? */ macro
124 if (fract_digits >= MAX_DIGITS-1) in scan_scaled()
135 if (++ndigits >= MAX_DIGITS) { in scan_scaled()
/external/icu/icu4c/source/tools/genrb/
Drbutil.c66 #define MAX_DIGITS 10 macro
99 if(length<MAX_DIGITS){ in itostr()
/external/icu/android_icu4j/src/main/java/android/icu/math/
DMathContext.java299 private static final int MAX_DIGITS=999999999; // largest value for DIGITS. If increased, field in MathContext
429 if (setdigits>MAX_DIGITS) in MathContext()
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/math/
DMathContext.java310 private static final int MAX_DIGITS=999999999; // largest value for DIGITS. If increased, field in MathContext
445 if (setdigits>MAX_DIGITS) in MathContext()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/math/
DMathContext.java310 private static final int MAX_DIGITS=999999999; // largest value for DIGITS. If increased, field in MathContext
445 if (setdigits>MAX_DIGITS) in MathContext()
/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()
/external/python/cpython3/Python/
Ddtoa.c205 #ifndef MAX_DIGITS
206 #define MAX_DIGITS 1000000000U macro
214 #if MAX_DIGITS > INT_MAX
1507 if (ndigits > MAX_DIGITS || fraclen > MAX_DIGITS) { in _Py_dg_strtod()
/external/python/cpython2/Python/
Ddtoa.c214 #ifndef MAX_DIGITS
215 #define MAX_DIGITS 1000000000U macro
223 #if MAX_DIGITS > INT_MAX
1580 if (ndigits > MAX_DIGITS || fraclen > MAX_DIGITS) { in _Py_dg_strtod()
/external/cldr/tools/c/genldml/
Dgenldml.cpp18 #define MAX_DIGITS 10 macro
202 if(length<MAX_DIGITS){ in itou()