Searched refs:msd (Results 1 – 4 of 4) sorted by relevance
140 uInt msd; /* work */ in decimal32FromNumber() local155 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()166 else comb=((exp>>3) & 0x18) | msd; in decimal32FromNumber()190 uInt msd; /* coefficient MSD */ in decimal32ToNumber() local205 msd=COMBMSD[comb]; /* decode the combination field */ in decimal32ToNumber()209 if (msd==0) { in decimal32ToNumber()215 msd=0; /* no top digit */ in decimal32ToNumber()223 if (msd) { /* non-zero msd */ in decimal32ToNumber()[all …]
144 uInt msd; /* work */ in decimal128FromNumber() local158 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() local229 msd=COMBMSD[comb]; /* decode the combination field */ in decimal128ToNumber()233 if (msd==0) { in decimal128ToNumber()239 msd=0; /* no top digit */ in decimal128ToNumber()247 if (msd) { /* non-zero msd */ in decimal128ToNumber()248 sourhi|=msd<<14; /* prefix to coefficient */ in decimal128ToNumber()[all …]
148 uInt msd; /* work */ in decimal64FromNumber() local173 msd=dpd[5]; /* [did not really need conversion] */ in decimal64FromNumber()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() local240 msd=COMBMSD[comb]; /* decode the combination field */ in decimal64ToNumber()244 if (msd==0) { in decimal64ToNumber()250 msd=0; /* no top digit */ in decimal64ToNumber()258 if (msd) { /* non-zero msd */ in decimal64ToNumber()[all …]
290 uByte *msd; /* -> most significant digit */ member