Searched refs:sourhi (Results 1 – 3 of 3) sorted by relevance
/qemu/include/libdecnumber/ |
H A D | decNumberLocal.h | 480 uInt sourhi=DFWORD(df, 0); \ 483 dpd2bcd83(bcd+4, sourhi);} 485 uInt sourhi=DFWWORD(df, 0); \ 488 dpd2bcd8(bcd+1, sourhi>>8); \ 496 uInt sourhi=DFWORD(df, 0); \ 499 dpd2bcd8(bcd+1, sourhi>>8); \ 505 uInt sourhi=DFWWORD(df, 0); \ 510 dpd2bcd8(bcd+1, sourhi>>4); \ 524 uInt sourhi=DFWORD(df, 0); \ 565 uInt sourhi, sourlo; \ [all …]
|
/qemu/libdecnumber/dpd/ |
H A D | decimal128.c | 215 sourhi=pu[3]; /* then the high int */ in decimal128ToNumber() 218 sourhi=pu[0]; /* directly load the high int */ in decimal128ToNumber() 224 comb=(sourhi>>26)&0x1f; /* combination field */ in decimal128ToNumber() 237 else if (sourhi&0x02000000) dn->bits|=DECSNAN; in decimal128ToNumber() 248 sourhi|=msd<<14; /* prefix to coefficient */ in decimal128ToNumber() 252 if (sourhi) need=11; /* declets to process */ in decimal128ToNumber() 309 sourhi=pu[3]; /* then the high int */ in decimal128ToString() 319 if (((Int)sourhi)<0) *c++='-'; /* handle sign */ in decimal128ToString() 321 comb=(sourhi>>26)&0x1f; /* combination field */ in decimal128ToString() 331 if (sourhi&0x02000000) *c++='s'; /* sNaN */ in decimal128ToString() [all …]
|
H A D | decimal64.c | 228 sourhi=pu[1]; /* then the high int */ in decimal64ToNumber() 231 sourhi=pu[0]; /* directly load the high int */ in decimal64ToNumber() 235 comb=(sourhi>>26)&0x1f; /* combination field */ in decimal64ToNumber() 248 else if (sourhi&0x02000000) dn->bits|=DECSNAN; in decimal64ToNumber() 259 sourhi|=msd<<18; /* prefix to coefficient */ in decimal64ToNumber() 263 if (!sourhi) { /* top word 0 */ in decimal64ToNumber() 321 sourhi=pu[1]; /* then the high int */ in decimal64ToString() 329 if (((Int)sourhi)<0) *c++='-'; /* handle sign */ in decimal64ToString() 331 comb=(sourhi>>26)&0x1f; /* combination field */ in decimal64ToString() 341 if (sourhi&0x02000000) *c++='s'; /* sNaN */ in decimal64ToString() [all …]
|