Lines Matching defs:yisint
2672 int i, j, k, yisint, n;
2691 * yisint = 0 ... y is not an integer
2692 * yisint = 1 ... y is an odd int
2693 * yisint = 2 ... y is an even int
2695 yisint = 0;
2698 yisint = 2; /* even integer y */
2703 if ((j << (52 - k)) == static_cast<int>(ly)) yisint = 2 - (j & 1);
2706 if ((j << (20 - k)) == iy) yisint = 2 - (j & 1);
2744 if (((ix - 0x3ff00000) | yisint) == 0) {
2747 } else if (yisint == 1) {
2758 if ((n | yisint) == 0) {
2763 if ((n | (yisint - 1)) == 0) s = -one; /* (-ve)**(odd int) */