Home
last modified time | relevance | path

Searched refs:BIN2DPD (Results 1 – 4 of 4) sorted by relevance

/openbmc/qemu/include/libdecnumber/
H A DdecDPD.h347 const uint16_t BIN2DPD[1000]={ 0, 1, 2, 3, 4, 5, 6, 7, variable
H A DdecNumberLocal.h104 extern const uShort BIN2DPD[1000]; /* 0-999 -> DPD */
/openbmc/qemu/libdecnumber/dpd/
H A Ddecimal32.c153 targ=BIN2DPD[dn->lsu[0]]; in decimal32FromNumber()
154 if (dn->digits>3) targ|=(uInt)(BIN2DPD[dn->lsu[1]])<<10; in decimal32FromNumber()
H A Ddecimal64.c164 for (i=0; d>0; i++, d-=3) dpd[i]=BIN2DPD[dn->lsu[i]]; in decimal64FromNumber()
707 dpd=BIN2DPD[bin]; in decDigitsToDPD()