Lines Matching refs:sourlo
206 #define sourlo sourar[0] /* and the lowest word */ in decimal128ToNumber() macro
210 sourlo=UBTOUI(d128->bytes ); /* directly load the low int */ in decimal128ToNumber()
219 sourlo=UBTOUI(d128->bytes+12); /* then the low int */ in decimal128ToNumber()
253 else if (sourlo) need=4; in decimal128ToNumber()
299 #define sourlo sourar[0] /* and the lowest word */ in decimal128ToString() macro
303 sourlo=UBTOUI(d128->bytes ); /* directly load the low int */ in decimal128ToString()
312 sourlo=UBTOUI(d128->bytes+12); /* then the low int */ in decimal128ToString()
331 if (sourlo==0 && sourml==0 && sourmh==0 in decimal128ToString()
367 dpd=((sourml&0xff)<<2) | (sourlo>>30); /* declet 8 */ in decimal128ToString()
369 dpd=(sourlo>>20)&0x3ff; /* declet 9 */ in decimal128ToString()
371 dpd=(sourlo>>10)&0x3ff; /* declet 10 */ in decimal128ToString()
373 dpd=(sourlo)&0x3ff; /* declet 11 */ in decimal128ToString()