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

  /external/icu4c/i18n/
decNumber.c 187 /* Public lookup table used by the D2U macro */
    [all...]
decNumberLocal.h 165 /* digits, and D2UTABLE -- the initializer for the D2U table */
217 /* Public lookup table used by the D2U macro (see below) */
226 /* D2U -- return the number of Units needed to hold d digits */
229 #define D2U(d) ((unsigned)((d)<=DECMAXD2U?d2utable[d]:((d)+7)>>3))
231 #define D2U(d) ((unsigned)((d)<=DECMAXD2U?d2utable[d]:((d)+3)>>2))
233 #define D2U(d) ((d)<=DECMAXD2U?d2utable[d]:((d)+DECDPUN-1)/DECDPUN)
235 /* SD2U -- static D2U macro (for compile-time calculation) */
239 /* using D2U */
240 #define MSUDIGITS(d) ((d)-(D2U(d)-1)*DECDPUN)
    [all...]

Completed in 40 milliseconds