Lines Matching refs:ly
42 unsigned lx, ly, lz;
47 ly = __LO (y); /* low word of y */
53 if ((hy | ly) == 0 || (hx >= 0x7ff00000) || /* y = 0, or x not finite */
54 ((hy | ((ly | -ly) >> 31)) > 0x7ff00000)) /* or y is NaN */
60 if ((hx < hy) || (lx < ly)) /* |x| < |y| return x */
64 if (lx == ly) /* |x| = |y| return x * 0 */
98 for (iy = -1043, i = ly; i > 0; i <<= 1)
116 /* set up {hx,lx}, {hy,ly} and align y to x */
144 hy = (((unsigned int) hy) << n) | (ly >> (32 - n));
145 ly <<= n;
149 hy = ly << (n - 32);
150 ly = 0;
159 lz = lx - ly;
160 if (lx < ly)
180 lz = lx - ly;
181 if (lx < ly)