Searched refs:sourlo (Results 1 – 3 of 3) sorted by relevance
/openbmc/qemu/include/libdecnumber/ |
H A D | decNumberLocal.h | 486 uInt sourlo=DFWWORD(df, 1); \ 489 dpd2bcd8(bcd+4, (sourhi<<2) | (sourlo>>30)); \ 490 dpd2bcd8(bcd+7, sourlo>>20); \ 491 dpd2bcd8(bcd+10, sourlo>>10); \ 492 dpd2bcd83(bcd+13, sourlo);} 497 uInt sourlo=DFWORD(df, 1); \ 500 dpd2bcd8(bcd+4, (sourhi<<2) | (sourlo>>30)); \ 501 dpd2bcd8(bcd+7, sourlo>>20); \ 502 dpd2bcd8(bcd+10, sourlo>>10); \ 503 dpd2bcd83(bcd+13, sourlo);} [all …]
|
/openbmc/qemu/libdecnumber/dpd/ |
H A D | decimal128.c | 207 #define sourlo sourar[0] /* and the lowest word */ in decimal128ToNumber() macro 212 sourlo=pu[0]; /* directly load the low int */ in decimal128ToNumber() 221 sourlo=pu[3]; /* then the low int */ in decimal128ToNumber() 255 else if (sourlo) need=4; in decimal128ToNumber() 301 #define sourlo sourar[0] /* and the lowest word */ in decimal128ToString() macro 306 sourlo=pu[0]; /* directly load the low int */ in decimal128ToString() 315 sourlo=pu[3]; /* then the low int */ in decimal128ToString() 334 if (sourlo==0 && sourml==0 && sourmh==0 in decimal128ToString() 370 dpd=((sourml&0xff)<<2) | (sourlo>>30); /* declet 8 */ in decimal128ToString() 372 dpd=(sourlo>>20)&0x3ff; /* declet 9 */ in decimal128ToString() [all …]
|
H A D | decimal64.c | 222 #define sourlo sourar[0] /* and the lower word */ in decimal64ToNumber() macro 227 sourlo=pu[0]; /* directly load the low int */ in decimal64ToNumber() 232 sourlo=pu[1]; /* then the low int */ in decimal64ToNumber() 264 if (!sourlo) return dn; /* easy: coefficient is 0 */ in decimal64ToNumber() 266 if (sourlo&0xc0000000) need++; /* process 4 declets */ in decimal64ToNumber() 315 #define sourlo sourar[0] /* and the lower word */ in decimal64ToString() macro 320 sourlo=pu[0]; /* directly load the low int */ in decimal64ToString() 325 sourlo=pu[1]; /* then the low int */ in decimal64ToString() 344 if (sourlo==0 && (sourhi&0x0003ffff)==0) return string; /* zero payload */ in decimal64ToString() 368 dpd=((sourhi&0xff)<<2) | (sourlo>>30); /* declet 2 */ in decimal64ToString() [all …]
|