Home
last modified time | relevance | path

Searched refs:targhi (Results 1 – 2 of 2) sorted by relevance

/qemu/libdecnumber/dpd/
H A Ddecimal128.c92 #define targhi targar[3] /* name the word with the sign */ in decimal128FromNumber() macro
116 if (dn->bits&DECINF) targhi=DECIMAL_Inf<<24; in decimal128FromNumber()
122 if (dn->bits&DECNAN) targhi|=DECIMAL_NaN<<24; in decimal128FromNumber()
123 else targhi|=DECIMAL_sNaN<<24; in decimal128FromNumber()
158 msd=targhi>>14; in decimal128FromNumber()
159 targhi&=0x00003fff; in decimal128FromNumber()
165 targhi|=comb<<26; /* add combination field .. */ in decimal128FromNumber()
166 targhi|=(exp&0xfff)<<14; /* .. and exponent continuation */ in decimal128FromNumber()
169 if (dn->bits&DECNEG) targhi|=0x80000000; /* add sign bit */ in decimal128FromNumber()
177 pu[3]=targhi; /* then the high int */ in decimal128FromNumber()
[all …]
H A Ddecimal64.c98 #define targhi targar[1] /* name the word with the sign */ in decimal64FromNumber() macro
120 if (dn->bits&DECINF) targhi=DECIMAL_Inf<<24; in decimal64FromNumber()
126 if (dn->bits&DECNAN) targhi|=DECIMAL_NaN<<24; in decimal64FromNumber()
127 else targhi|=DECIMAL_sNaN<<24; in decimal64FromNumber()
170 targhi =dpd[3]>>2; in decimal64FromNumber()
171 targhi|=dpd[4]<<8; in decimal64FromNumber()
178 msd=targhi>>18; in decimal64FromNumber()
179 targhi&=0x0003ffff; in decimal64FromNumber()
186 targhi|=comb<<26; /* add combination field .. */ in decimal64FromNumber()
187 targhi|=(exp&0xff)<<18; /* .. and exponent continuation */ in decimal64FromNumber()
[all …]