Lines Matching refs:sourlo
221 #define sourlo sourar[0] /* and the lower word */ in decimal64ToNumber() macro
225 sourlo=UBTOUI(d64->bytes ); /* directly load the low int */ in decimal64ToNumber()
230 sourlo=UBTOUI(d64->bytes+4); /* then the low int */ in decimal64ToNumber()
262 if (!sourlo) return dn; /* easy: coefficient is 0 */ in decimal64ToNumber()
264 if (sourlo&0xc0000000) need++; /* process 4 declets */ in decimal64ToNumber()
313 #define sourlo sourar[0] /* and the lower word */ in decimal64ToString() macro
317 sourlo=UBTOUI(d64->bytes ); /* directly load the low int */ in decimal64ToString()
322 sourlo=UBTOUI(d64->bytes+4); /* then the low int */ in decimal64ToString()
341 if (sourlo==0 && (sourhi&0x0003ffff)==0) return string; /* zero payload */ in decimal64ToString()
365 dpd=((sourhi&0xff)<<2) | (sourlo>>30); /* declet 2 */ in decimal64ToString()
367 dpd=(sourlo>>20)&0x3ff; /* declet 3 */ in decimal64ToString()
369 dpd=(sourlo>>10)&0x3ff; /* declet 4 */ in decimal64ToString()
371 dpd=(sourlo)&0x3ff; /* declet 5 */ in decimal64ToString()