Home | History | Annotate | Download | only in target-i386

Lines Matching refs:LL

4284                        || (mant & (1LL << 63)) == 0
4488 *pmant = (MANTD(temp) << 11) | (1LL << 63);
4499 uint64_t ll;
4504 ll = (mant >> 11) & ((1LL << 52) - 1);
4506 temp.l.upper = (e << 20) | (ll >> 32);
4507 temp.l.lower = ll;
4509 temp.ll = ll | ((uint64_t)e << 52);