Home
last modified time | relevance | path

Searched refs:sourlo (Results 1 – 3 of 3) sorted by relevance

/qemu/include/libdecnumber/
H A DdecNumberLocal.h486 uInt sourlo=DFWWORD(df, 1); \
492 dpd2bcd83(bcd+13, sourlo);}
497 uInt sourlo=DFWORD(df, 1); \
503 dpd2bcd83(bcd+13, sourlo);}
508 uInt sourlo=DFWWORD(df, 3); \
520 dpd2bcd83(bcd+31, sourlo);}
527 uInt sourlo=DFWORD(df, 3); \
539 dpd2bcd83(bcd+31, sourlo);}
565 uInt sourhi, sourlo; \
566 sourlo=DFWORD(df, 1); \
[all …]
/qemu/libdecnumber/dpd/
H A Ddecimal128.c207 #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()
372 dpd=(sourlo>>20)&0x3ff; /* declet 9 */ in decimal128ToString()
374 dpd=(sourlo>>10)&0x3ff; /* declet 10 */ in decimal128ToString()
[all …]
H A Ddecimal64.c222 #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()
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()
368 dpd=((sourhi&0xff)<<2) | (sourlo>>30); /* declet 2 */ in decimal64ToString()
370 dpd=(sourlo>>20)&0x3ff; /* declet 3 */ in decimal64ToString()
372 dpd=(sourlo>>10)&0x3ff; /* declet 4 */ in decimal64ToString()
[all …]