HomeSort by relevance Sort by last modified time
    Searched refs:MAX_LONG_DIGITS (Results 1 - 7 of 7) sorted by null

  /external/icu/android_icu4j/src/main/java/android/icu/text/
DigitList_Android.java 57 public static final int MAX_LONG_DIGITS = 19; // == Long.toString(Long.MAX_VALUE).length()
83 public byte[] digits = new byte[MAX_LONG_DIGITS];
318 // if (decimalAt < count || decimalAt > MAX_LONG_DIGITS) return false;
320 // if (decimalAt < MAX_LONG_DIGITS) return true;
322 // // At this point we have decimalAt == count, and count == MAX_LONG_DIGITS.
375 set(rep, MAX_LONG_DIGITS);
578 decimalAt = count = MAX_LONG_DIGITS;
585 int left = MAX_LONG_DIGITS;
591 decimalAt = MAX_LONG_DIGITS-left;
595 for (right = MAX_LONG_DIGITS - 1; digits[right] == (byte) '0'; --right) {
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DigitList_Android.java 55 public static final int MAX_LONG_DIGITS = 19; // == Long.toString(Long.MAX_VALUE).length()
81 public byte[] digits = new byte[MAX_LONG_DIGITS];
316 // if (decimalAt < count || decimalAt > MAX_LONG_DIGITS) return false;
318 // if (decimalAt < MAX_LONG_DIGITS) return true;
320 // // At this point we have decimalAt == count, and count == MAX_LONG_DIGITS.
373 set(rep, MAX_LONG_DIGITS);
576 decimalAt = count = MAX_LONG_DIGITS;
583 int left = MAX_LONG_DIGITS;
589 decimalAt = MAX_LONG_DIGITS-left;
593 for (right = MAX_LONG_DIGITS - 1; digits[right] == (byte) '0'; --right) {
    [all...]
  /external/python/cpython3/Objects/
longobject.c 191 #define MAX_LONG_DIGITS \
203 if (size > (Py_ssize_t)MAX_LONG_DIGITS) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Objects/
longobject.c 78 #define MAX_LONG_DIGITS \
84 if (size > (Py_ssize_t)MAX_LONG_DIGITS) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Objects/
longobject.c 74 #define MAX_LONG_DIGITS \
80 if (size > (Py_ssize_t)MAX_LONG_DIGITS) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
longobject.c 78 #define MAX_LONG_DIGITS \
84 if (size > (Py_ssize_t)MAX_LONG_DIGITS) {
    [all...]
  /external/python/cpython2/Objects/
longobject.c 62 #define MAX_LONG_DIGITS \
68 if (size > (Py_ssize_t)MAX_LONG_DIGITS) {
    [all...]

Completed in 426 milliseconds