Searched refs:sourmh (Results 1 – 2 of 2) sorted by relevance
/openbmc/qemu/include/libdecnumber/ |
H A D | decNumberLocal.h | 506 uInt sourmh=DFWWORD(df, 1); \ 511 dpd2bcd8(bcd+4, ((sourhi)<<6) | (sourmh>>26)); \ 512 dpd2bcd8(bcd+7, sourmh>>16); \ 513 dpd2bcd8(bcd+10, sourmh>>6); \ 514 dpd2bcd8(bcd+13, ((sourmh)<<4) | (sourml>>28)); \ 525 uInt sourmh=DFWORD(df, 1); \ 530 dpd2bcd8(bcd+4, ((sourhi)<<6) | (sourmh>>26)); \ 531 dpd2bcd8(bcd+7, sourmh>>16); \ 532 dpd2bcd8(bcd+10, sourmh>>6); \ 533 dpd2bcd8(bcd+13, ((sourmh)<<4) | (sourml>>28)); \ [all …]
|
/openbmc/qemu/libdecnumber/dpd/ |
H A D | decimal128.c | 205 #define sourmh sourar[2] /* and the mid-high word */ in decimal128ToNumber() macro 214 sourmh=pu[2]; /* then the mid-high */ in decimal128ToNumber() 219 sourmh=pu[1]; /* then the mid-high */ in decimal128ToNumber() 253 else if (sourmh) need=10; in decimal128ToNumber() 299 #define sourmh sourar[2] /* and the mid-high word */ in decimal128ToString() macro 308 sourmh=pu[2]; /* then the mid-high */ in decimal128ToString() 313 sourmh=pu[1]; /* then the mid-high */ in decimal128ToString() 334 if (sourlo==0 && sourml==0 && sourmh==0 in decimal128ToString() 358 dpd=((sourhi&0xf)<<6) | (sourmh>>26); /* declet 2 */ in decimal128ToString() 360 dpd=(sourmh>>16)&0x3ff; /* declet 3 */ in decimal128ToString() [all …]
|