HomeSort by: relevance | last modified time | path
    Searched defs:D2U (Results 1 - 4 of 4) sorted by relevancy

  /src/external/gpl3/gcc/dist/libdecnumber/
decNumberLocal.h 195 /* digits, and D2UTABLE -- the initializer for the D2U table */
247 /* Public lookup table used by the D2U macro (see below) */
256 /* D2U -- return the number of Units needed to hold d digits */
259 #define D2U(d) ((unsigned)((d)<=DECMAXD2U?d2utable[d]:((d)+7)>>3))
261 #define D2U(d) ((unsigned)((d)<=DECMAXD2U?d2utable[d]:((d)+3)>>2))
263 #define D2U(d) ((d)<=DECMAXD2U?d2utable[d]:((d)+DECDPUN-1)/DECDPUN)
265 /* SD2U -- static D2U macro (for compile-time calculation) */
269 /* using D2U */
270 #define MSUDIGITS(d) ((d)-(D2U(d)-1)*DECDPUN)
  /src/external/gpl3/gcc.old/dist/libdecnumber/
decNumberLocal.h 195 /* digits, and D2UTABLE -- the initializer for the D2U table */
247 /* Public lookup table used by the D2U macro (see below) */
256 /* D2U -- return the number of Units needed to hold d digits */
259 #define D2U(d) ((unsigned)((d)<=DECMAXD2U?d2utable[d]:((d)+7)>>3))
261 #define D2U(d) ((unsigned)((d)<=DECMAXD2U?d2utable[d]:((d)+3)>>2))
263 #define D2U(d) ((d)<=DECMAXD2U?d2utable[d]:((d)+DECDPUN-1)/DECDPUN)
265 /* SD2U -- static D2U macro (for compile-time calculation) */
269 /* using D2U */
270 #define MSUDIGITS(d) ((d)-(D2U(d)-1)*DECDPUN)
  /src/external/gpl3/gdb/dist/libdecnumber/
decNumberLocal.h 195 /* digits, and D2UTABLE -- the initializer for the D2U table */
247 /* Public lookup table used by the D2U macro (see below) */
256 /* D2U -- return the number of Units needed to hold d digits */
259 #define D2U(d) ((unsigned)((d)<=DECMAXD2U?d2utable[d]:((d)+7)>>3))
261 #define D2U(d) ((unsigned)((d)<=DECMAXD2U?d2utable[d]:((d)+3)>>2))
263 #define D2U(d) ((d)<=DECMAXD2U?d2utable[d]:((d)+DECDPUN-1)/DECDPUN)
265 /* SD2U -- static D2U macro (for compile-time calculation) */
269 /* using D2U */
270 #define MSUDIGITS(d) ((d)-(D2U(d)-1)*DECDPUN)
  /src/external/gpl3/gdb.old/dist/libdecnumber/
decNumberLocal.h 195 /* digits, and D2UTABLE -- the initializer for the D2U table */
247 /* Public lookup table used by the D2U macro (see below) */
256 /* D2U -- return the number of Units needed to hold d digits */
259 #define D2U(d) ((unsigned)((d)<=DECMAXD2U?d2utable[d]:((d)+7)>>3))
261 #define D2U(d) ((unsigned)((d)<=DECMAXD2U?d2utable[d]:((d)+3)>>2))
263 #define D2U(d) ((d)<=DECMAXD2U?d2utable[d]:((d)+DECDPUN-1)/DECDPUN)
265 /* SD2U -- static D2U macro (for compile-time calculation) */
269 /* using D2U */
270 #define MSUDIGITS(d) ((d)-(D2U(d)-1)*DECDPUN)

Completed in 23 milliseconds