Lines Matching defs:lx
519 lx = LO(px); \
533 if (hx > 0x7ff00000 || (hx == 0x7ff00000 && lx != 0)) /* |X| = Nan */ \
535 else if ((hx | lx) == 0 || (hx == 0x7ff00000 && lx == 0)) /* X = 0 or Inf */ \
538 LO(pz) = lx; \
556 if (hx > 0x7ff00000 || (hx == 0x7ff00000 && lx != 0) || \
561 if (hx == 0x3ff00000 && (lx == 0)) /* +-1 ** +-Inf */ \
598 hx = lx = 0; \
601 LO(pz) = lx; \
607 if (lx == 0 && (hx == 0 || hx == 0x3ff00000 || hx == 0x7ff00000)) \
610 LO(pz) = lx; \
622 if ((sx || (hx | lx)) == 0) /* X <= 0 */ \
644 if ((hx | lx) == 0) /* X == 0 */ \
696 unsigned hx, lx, sx, hy, ly, sy;
720 unsigned lx = LO(px);
725 (hx != 0x3ff00000 || lx != 0))