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

  /external/icu/icu4c/source/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 */
230 #if DECDPUN<=4
240 /* For DECDPUN>4 non-ANSI-89 64-bit types are needed. */
242 #error decNumber.c: DECUSE64 must be 1 when DECDPUN>4
414 #if DECDPUN>1 /* split to higher */
420 for (d=DECDPUN; d<dn->digits; up++, d+=DECDPUN) hi+=*up*powers[d-1];
450 #if DECDPUN>1 /* split to higher *
    [all...]
decNumberLocal.h 164 /* Set DECDPUNMAX -- the maximum integer that fits in DECDPUN */
166 #if DECDPUN==1
172 #elif DECDPUN==2
177 #elif DECDPUN==3
182 #elif DECDPUN==4
187 #elif DECDPUN==5
192 #elif DECDPUN==6
197 #elif DECDPUN==7
202 #elif DECDPUN==8
207 #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 55 milliseconds