Home
last modified time | relevance | path

Searched refs:DPD2BIN (Results 1 – 5 of 5) sorted by relevance

/openbmc/qemu/include/libdecnumber/
H A DdecNumberLocal.h103 extern const uShort DPD2BIN[1024]; /* DPD -> 0-999 */
554 #define DPD2BIN0 DPD2BIN /* for prettier code */
606 (buf)[0]=DPD2BIN[sourhi&0x3ff]; \
607 (buf)[1]=DPD2BIN[(sourhi>>10)&0x3ff]; \
614 (buf)[0]=DPD2BIN[sourlo&0x3ff]; \
615 (buf)[1]=DPD2BIN[(sourlo>>10)&0x3ff]; \
616 (buf)[2]=DPD2BIN[(sourlo>>20)&0x3ff]; \
618 (buf)[3]=DPD2BIN[((sourhi<<2) | (sourlo>>30))&0x3ff]; \
619 (buf)[4]=DPD2BIN[(sourhi>>8)&0x3ff]; \
626 (buf)[0]=DPD2BIN[sourlo&0x3ff]; \
[all …]
H A DdecDPD.h430 const uint16_t DPD2BIN[1024]={ 0, 1, 2, 3, 4, 5, 6, 7, variable
/openbmc/qemu/libdecnumber/dpd/
H A Ddecimal64.c362 #define dpd2char u=&BIN2CHAR[DPD2BIN[dpd]*4]; \ in decimal64ToString()
776 *uout=DPD2BIN[dpd]; /* convert 10 bits to binary 0-999 */ in decDigitsFromDPD()
H A Ddecimal32.c309 #define dpd2char u=&BIN2CHAR[DPD2BIN[dpd]*4]; \ in decimal32ToString()
H A Ddecimal128.c353 #define dpd2char u=&BIN2CHAR[DPD2BIN[dpd]*4]; \ in decimal128ToString()