Home | History | Annotate | Download | only in i18n

Lines Matching refs:DECDPUN

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). */