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

  /external/icu4c/i18n/
decNumber.c 49 /* c) If DECDPUN>4 or DECUSE64=1, the C99 64-bit int64_t and */
51 /* and DECDPUN<=4 (see documentation). */
150 /* 6. The digits count is allowed to rise to a multiple of DECDPUN */
215 #if DECDPUN<=4
225 /* For DECDPUN>4 non-ANSI-89 64-bit types are needed. */
227 #error decNumber.c: DECUSE64 must be 1 when DECDPUN>4
399 #if DECDPUN>1 /* split to higher */
405 for (d=DECDPUN; d<dn->digits; up++, d+=DECDPUN) hi+=*up*powers[d-1];
435 #if DECDPUN>1 /* split to higher *
    [all...]
decNumberLocal.h 176 /* Set DECDPUNMAX -- the maximum integer that fits in DECDPUN */
178 #if DECDPUN==1
184 #elif DECDPUN==2
189 #elif DECDPUN==3
194 #elif DECDPUN==4
199 #elif DECDPUN==5
204 #elif DECDPUN==6
209 #elif DECDPUN==7
214 #elif DECDPUN==8
219 #elif DECDPUN==
    [all...]
decNumber.h 57 #define DECDPUN 1 /* DECimal Digits Per UNit [must be >0 */
70 #if DECDPUN<=2
72 #elif DECDPUN<=4
77 /* The number of units needed is ceil(DECNUMDIGITS/DECDPUN) */
78 #define DECNUMUNITS ((DECNUMDIGITS+DECDPUN-1)/DECDPUN)
91 /* 1. If digits is > DECDPUN then there will one or more */
100 /* contains DECDPUN digits (e.g., a value in the range 0 through */
101 /* 99999999 if DECDPUN is 8, or 0 through 999 if DECDPUN is 3). *
    [all...]

Completed in 43 milliseconds