Home
last modified time | relevance | path

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

/qemu/libdecnumber/dpd/
H A Ddecimal32.c140 uInt msd; /* work */ in decimal32FromNumber() local
155 msd=(dn->digits==7 ? dn->lsu[2] : 0); in decimal32FromNumber()
160 msd=targ>>20; in decimal32FromNumber()
165 if (msd>=8) comb=0x18 | ((exp>>5) & 0x06) | (msd & 0x01); in decimal32FromNumber()
190 uInt msd; /* coefficient MSD */ in decimal32ToNumber() local
209 if (msd==0) { in decimal32ToNumber()
215 msd=0; /* no top digit */ in decimal32ToNumber()
223 if (msd) { /* non-zero msd */ in decimal32ToNumber()
259 uInt msd; /* coefficient MSD */ in decimal32ToString() local
283 if (msd==0) { /* infinity */ in decimal32ToString()
[all …]
H A Ddecimal128.c144 uInt msd; /* work */ in decimal128FromNumber() local
158 msd=targhi>>14; in decimal128FromNumber()
162 if (msd>=8) comb=0x18 | ((exp>>11) & 0x06) | (msd & 0x01); in decimal128FromNumber()
163 else comb=((exp>>9) & 0x18) | msd; in decimal128FromNumber()
198 uInt msd; /* coefficient MSD */ in decimal128ToNumber() local
233 if (msd==0) { in decimal128ToNumber()
239 msd=0; /* no top digit */ in decimal128ToNumber()
247 if (msd) { /* non-zero msd */ in decimal128ToNumber()
286 uInt msd; /* coefficient MSD */ in decimal128ToString() local
326 if (msd==0) { /* infinity */ in decimal128ToString()
[all …]
H A Ddecimal64.c148 uInt msd; /* work */ in decimal64FromNumber() local
178 msd=targhi>>18; in decimal64FromNumber()
183 if (msd>=8) comb=0x18 | ((exp>>7) & 0x06) | (msd & 0x01); in decimal64FromNumber()
184 else comb=((exp>>5) & 0x18) | msd; in decimal64FromNumber()
215 uInt msd; /* coefficient MSD */ in decimal64ToNumber() local
244 if (msd==0) { in decimal64ToNumber()
250 msd=0; /* no top digit */ in decimal64ToNumber()
258 if (msd) { /* non-zero msd */ in decimal64ToNumber()
302 uInt msd; /* coefficient MSD */ in decimal64ToString() local
336 if (msd==0) { /* infinity */ in decimal64ToString()
[all …]
/qemu/include/libdecnumber/
H A DdecNumberLocal.h290 uByte *msd; /* -> most significant digit */ member