Home
last modified time | relevance | path

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

/openbmc/qemu/libdecnumber/dpd/
H A Ddecimal32.c139 uInt msd; /* work */ in decimal32FromNumber() local
154 msd=(dn->digits==7 ? dn->lsu[2] : 0); in decimal32FromNumber()
159 msd=targ>>20; in decimal32FromNumber()
164 if (msd>=8) comb=0x18 | ((exp>>5) & 0x06) | (msd & 0x01); in decimal32FromNumber()
165 else comb=((exp>>3) & 0x18) | msd; in decimal32FromNumber()
189 uInt msd; /* coefficient MSD */ in decimal32ToNumber() local
204 msd=COMBMSD[comb]; /* decode the combination field */ in decimal32ToNumber()
208 if (msd==0) { in decimal32ToNumber()
214 msd=0; /* no top digit */ in decimal32ToNumber()
222 if (msd) { /* non-zero msd */ in decimal32ToNumber()
[all …]
H A Ddecimal128.c143 uInt msd; /* work */ in decimal128FromNumber() local
157 msd=targhi>>14; in decimal128FromNumber()
161 if (msd>=8) comb=0x18 | ((exp>>11) & 0x06) | (msd & 0x01); in decimal128FromNumber()
162 else comb=((exp>>9) & 0x18) | msd; in decimal128FromNumber()
197 uInt msd; /* coefficient MSD */ in decimal128ToNumber() local
228 msd=COMBMSD[comb]; /* decode the combination field */ in decimal128ToNumber()
232 if (msd==0) { in decimal128ToNumber()
238 msd=0; /* no top digit */ in decimal128ToNumber()
246 if (msd) { /* non-zero msd */ in decimal128ToNumber()
247 sourhi|=msd<<14; /* prefix to coefficient */ in decimal128ToNumber()
[all …]
H A Ddecimal64.c147 uInt msd; /* work */ in decimal64FromNumber() local
172 msd=dpd[5]; /* [did not really need conversion] */ in decimal64FromNumber()
177 msd=targhi>>18; in decimal64FromNumber()
182 if (msd>=8) comb=0x18 | ((exp>>7) & 0x06) | (msd & 0x01); in decimal64FromNumber()
183 else comb=((exp>>5) & 0x18) | msd; in decimal64FromNumber()
214 uInt msd; /* coefficient MSD */ in decimal64ToNumber() local
239 msd=COMBMSD[comb]; /* decode the combination field */ in decimal64ToNumber()
243 if (msd==0) { in decimal64ToNumber()
249 msd=0; /* no top digit */ in decimal64ToNumber()
257 if (msd) { /* non-zero msd */ in decimal64ToNumber()
[all …]
/openbmc/u-boot/include/
H A Dddr_spd.h285 unsigned char msd[26]; /* 150-175 Mfg's Specific Data */ member
494 uint8_t msd[29]; /* 353~381 Mfg's Specific Data */ member
/openbmc/qemu/include/libdecnumber/
H A DdecNumberLocal.h289 uByte *msd; /* -> most significant digit */ member
/openbmc/u-boot/drivers/ddr/fsl/
H A Dinteractive.c1413 printf("%02x ", spd->msd[i - 150]); in ddr3_spd_dump()
1679 printf("%02x ", spd->msd[i - 353]); in ddr4_spd_dump()