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

  /external/chromium_org/third_party/icu/source/i18n/
decNumberLocal.h 177 /* digits, and D2UTABLE -- the initializer for the D2U table */
229 /* Public lookup table used by the D2U macro (see below) */
238 /* D2U -- return the number of Units needed to hold d digits */
241 #define D2U(d) ((unsigned)((d)<=DECMAXD2U?d2utable[d]:((d)+7)>>3))
243 #define D2U(d) ((unsigned)((d)<=DECMAXD2U?d2utable[d]:((d)+3)>>2))
245 #define D2U(d) ((d)<=DECMAXD2U?d2utable[d]:((d)+DECDPUN-1)/DECDPUN)
247 /* SD2U -- static D2U macro (for compile-time calculation) */
251 /* using D2U */
252 #define MSUDIGITS(d) ((d)-(D2U(d)-1)*DECDPUN)
    [all...]
  /external/icu4c/i18n/
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 33 milliseconds