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

  /external/icu/icu4c/source/i18n/
decNumber.cpp 51 /* c) If DECDPUN>4 or DECUSE64=1, the C99 64-bit int64_t and */
53 /* and DECDPUN<=4 (see documentation). */
152 /* 6. The digits count is allowed to rise to a multiple of DECDPUN */
232 #if DECDPUN<=4
242 /* For DECDPUN>4 non-ANSI-89 64-bit types are needed. */
244 #error decNumber.c: DECUSE64 must be 1 when DECDPUN>4
416 #if DECDPUN>1 /* split to higher */
422 for (d=DECDPUN; d<dn->digits; up++, d+=DECDPUN) hi+=*up*powers[d-1];
452 #if DECDPUN>1 /* split to higher *
    [all...]
decNumberLocal.h 167 /* Set DECDPUNMAX -- the maximum integer that fits in DECDPUN */
169 #if DECDPUN==1
175 #elif DECDPUN==2
180 #elif DECDPUN==3
185 #elif DECDPUN==4
190 #elif DECDPUN==5
195 #elif DECDPUN==6
200 #elif DECDPUN==7
205 #elif DECDPUN==8
210 #elif DECDPUN==
    [all...]
decNumber.h 59 #define DECDPUN 1 /* DECimal Digits Per UNit [must be >0 */
72 #if DECDPUN<=2
74 #elif DECDPUN<=4
79 /* The number of units needed is ceil(DECNUMDIGITS/DECDPUN) */
80 #define DECNUMUNITS ((DECNUMDIGITS+DECDPUN-1)/DECDPUN)
93 /* 1. If digits is > DECDPUN then there will one or more */
102 /* contains DECDPUN digits (e.g., a value in the range 0 through */
103 /* 99999999 if DECDPUN is 8, or 0 through 999 if DECDPUN is 3). *
    [all...]
number_decimalquantity.cpp 45 U_ASSERT(DECDPUN == 1);

Completed in 926 milliseconds