Searched defs:ix1 (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/native/java/lang/fdlibm/src/
H A De_sqrt.c113 unsigned r,t1,s1,ix1,q1; local
117 ix1 = __LO(x); /* low word of x */
126 if(((ix0&(~sign))|ix1)==0) return x;/* sqrt(+-0) = +-0 */
135 ix0 |= (ix1>>11); ix1 <<= 21;
139 ix0 |= (ix1>>(32-i));
140 ix1 <<= i;
145 ix0 += ix0 + ((ix1&sign)>>31);
146 ix1 += ix1;
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DFillParallelogram.c50 jint ix1, iy1, ix2, iy2; local
62 PGRAM_MIN_MAX(ix1, ix2, x0, dx1, dx2, JNI_FALSE);
81 SurfaceData_IntersectBoundsXYXY(&rasInfo.bounds, ix1, iy1, ix2, iy2);
92 ix1 = rasInfo.bounds.x1;
96 if (ix2 > ix1 && iy2 > iy1) {
119 ix1, loy, ix2, hiy,
137 ix1, loy, ix2, hiy,
153 ix1, loy, ix2, hiy,
169 ix1, loy, ix2, hiy,
H A DDrawParallelogram.c37 jint ix1 = (jint) floor(X1); \
43 ix1, iy1, ix2, iy2, JNI_TRUE); \
106 jint ix1, iy1, ix2, iy2; local
127 PGRAM_MIN_MAX(ix1, ix2, ox0, dx1+ldx1, dx2+ldx2, JNI_FALSE);
146 SurfaceData_IntersectBoundsXYXY(&rasInfo.bounds, ix1, iy1, ix2, iy2);
157 ix1 = rasInfo.bounds.x1;
161 if (ix2 > ix1 && iy2 > iy1) {
293 ix1, loy, ix2, hiy,
H A DMaskFill.c685 jint ix1, iy1, ix2, iy2; local
697 PGRAM_MIN_MAX(ix1, ix2, x0, dx1, dx2, JNI_TRUE);
715 SurfaceData_IntersectBoundsXYXY(&rasInfo.bounds, ix1, iy1, ix2, iy2);
726 ix1 = rasInfo.bounds.x1;
730 if (ix2 > ix1 && iy2 > iy1) {
731 jint width = ix2 - ix1;
741 ix1, rasInfo.pixelStride,
951 jint ix1, iy1, ix2, iy2; local
989 PGRAM_MIN_MAX(ix1, ix2, ox0, dx1+ldx1, dx2+ldx2, JNI_TRUE);
1007 SurfaceData_IntersectBoundsXYXY(&rasInfo.bounds, ix1, iy
[all...]

Completed in 34 milliseconds