Searched refs:DECDPUN (Results 1 – 4 of 4) sorted by relevance
169 #ifndef DECDPUN171 #elif DECDPUN==1177 #elif DECDPUN==2182 #elif DECDPUN==3187 #elif DECDPUN==4192 #elif DECDPUN==5197 #elif DECDPUN==6202 #elif DECDPUN==7207 #elif DECDPUN==8212 #elif DECDPUN==9[all …]
232 #if DECDPUN<=4244 #error decNumber.c: DECUSE64 must be 1 when DECDPUN>4416 #if DECDPUN>1 /* split to higher */ in uprv_decNumberToInt32()422 for (d=DECDPUN; d<dn->digits; up++, d+=DECDPUN) hi+=*up*powers[d-1]; in uprv_decNumberToInt32()452 #if DECDPUN>1 /* split to higher */ in uprv_decNumberToUInt32()458 for (d=DECDPUN; d<dn->digits; up++, d+=DECDPUN) hi+=*up*powers[d-1]; in uprv_decNumberToUInt32()526 #if DECDPUN>1 in uprv_decNumberFromString()690 #if DECDPUN>1 in uprv_decNumberFromString()693 cut=d-(up-res)*DECDPUN; /* digits in top unit */ in uprv_decNumberFromString()702 cut=DECDPUN; /* .. */ in uprv_decNumberFromString()[all …]
59 #define DECDPUN 1 /* DECimal Digits Per UNit [must be >0 */ macro72 #if DECDPUN<=274 #elif DECDPUN<=480 #define DECNUMUNITS ((DECNUMDIGITS+DECDPUN-1)/DECDPUN)
171 static_assert(DECDPUN == 1, "Assumes that DECDPUN is set to 1"); in _setTo()