Searched refs:x2 (Results 76 - 100 of 319) sorted by relevance

1234567891011>>

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodeTableswitch.java42 int x2 = alignedOffset(1 + (3 + i)*jintSize);
43 int val = javaSignedWordAt(x2);
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dimg_util_md.h50 #define ImgInitMask(cvdata, x1, y1, x2, y2) \
51 (((AwtImage *) cvdata)->GetMaskBuf(TRUE, x1, y1, x2, y2))
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DFillSpans.c75 rasInfo.bounds.x2 = bbox[2];
86 rasInfo.bounds.x2,
H A DProcessPath.c451 * (x1, y1), (x2, y2) - fixed point coordinates of the endpoints
473 void ProcessFixedLine(ProcessHandler* hnd,jint x1,jint y1,jint x2,jint y2, argument
478 jint c = ((x1 ^ x2) | (y1 ^ y2));
491 if (x1 == x2 || y1 == y2) {
493 rx2 = x2 + MDP_HALF_MULT;
498 jint dx = x2 - x1;
501 /* Floor of x1, y1, x2, y2 */
504 jint fx2 = x2 & MDP_W_MASK;
515 /* Boundary at the direction from (x1,y1) to (x2,y2) */
516 jint bx1 = (x1 < x2)
602 jint x2 = x0; local
1047 jint x2 = x0; local
1374 jfloat x2 = coord2[0]; local
2094 StoreFixedLine(ProcessHandler* hnd,jint x1,jint y1,jint x2,jint y2, jint* pixelInfo,jboolean checkBounds, jboolean endSubPath) argument
[all...]
H A DBlit.c70 srcInfo.bounds.x2 = srcx + width;
74 dstInfo.bounds.x2 = dstx + width;
120 span.x2 - span.x1, span.y2 - span.y1,
H A DBlitBg.c70 srcInfo.bounds.x2 = srcx + width;
74 dstInfo.bounds.x2 = dstx + width;
124 span.x2 - span.x1, span.y2 - span.y1,
H A DDrawPath.c119 ok = (rasInfo.bounds.x2 > rasInfo.bounds.x1 &&
126 if (rasInfo.bounds.x2 > rasInfo.bounds.x1 &&
156 drawHandler.xMax = rasInfo.bounds.x2;
H A DFillPath.c109 ok = (rasInfo.bounds.x2 > rasInfo.bounds.x1 &&
116 if (rasInfo.bounds.x2 > rasInfo.bounds.x1 &&
145 drawHandler.xMax = rasInfo.bounds.x2;
H A DMaskBlit.c70 srcInfo.bounds.x2 = srcx + width;
74 dstInfo.bounds.x2 = dstx + width;
121 span.x2 - span.x1, span.y2 - span.y1,
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DShapeSpanIterator.java194 float x2, float y2);
196 float x2, float y2,
193 quadTo(float x1, float y1, float x2, float y2) argument
195 curveTo(float x1, float y1, float x2, float y2, float x3, float y3) argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/
H A DSPARCV9Opcodes.java266 public static final int WRPR = (3 << 4) | 0x2;
304 public static final int FMOVd = 0x2;
311 public static final int FdTOx = (0x8 << 4) | 0x2;
345 public static final int FMOVRsZ = 5 | (0x2 << 4);
352 public static final int FMOVRdZ = 6 | (0x2 << 4);
359 public static final int FMOVRqZ = 7 | (0x2 << 4);
/openjdk7/jdk/make/tools/src/build/tools/generatenimbus/
H A DPainterGenerator.java228 float x2 = encode((float)rshape.getX2(), a, b, width);
238 " " + writeDecodeX(x2) + " - " + writeDecodeX(x1) + ", //width\n" +
247 " " + writeDecodeX(x2) + " - " + writeDecodeX(x1) + ", //width\n" +
255 float x2 = encode((float)eshape.getX2(), a, b, width);
261 " " + writeDecodeX(x2) + " - " + writeDecodeX(x1) + ", //width\n" +
281 float x2 = encode((float)cp.getX(), a, b, width);
286 + writeDecodeBezierX(x2, cp.getX(), cp.getCp1X()) + ", "
288 + writeDecodeX(x2) + ", " + writeDecodeY(y2) + ");\n");
299 float x2 = encode((float)first.getX(), a, b, width);
304 + writeDecodeBezierX(x2, firs
[all...]
/openjdk7/jdk/src/share/classes/javax/management/openmbean/
H A DOpenMBeanAttributeInfoSupport.java992 static boolean equal(OpenMBeanParameterInfo x1, OpenMBeanParameterInfo x2) { argument
994 if (!(x2 instanceof DescriptorRead))
997 Descriptor d2 = ((DescriptorRead) x2).getDescriptor();
1000 } else if (x2 instanceof DescriptorRead)
1004 x1.getName().equals(x2.getName()) &&
1005 x1.getOpenType().equals(x2.getOpenType()) &&
1007 x1.getDefaultValue().equals(x2.getDefaultValue()) :
1008 !x2.hasDefaultValue()) &&
1010 x1.getMinValue().equals(x2.getMinValue()) :
1011 !x2
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/pisces/
H A DRenderer.java172 final float x2, final float y2)
199 addLine(x0, y0, x2, y2);
265 private void addLine(float x1, float y1, float x2, float y2) { argument
271 or = x2;
272 x2 = x1;
284 final float slope = (x2 - x1) / (y2 - y1);
286 if (slope > 0) { // <==> x1 < x2
288 if (x2 > edgeMaxX) { edgeMaxX = x2; }
290 if (x2 < edgeMin
170 quadBreakIntoLinesAndAdd(float x0, float y0, final Curve c, final float x2, final float y2) argument
388 curveTo(float x1, float y1, float x2, float y2, float x3, float y3) argument
400 quadTo(float x1, float y1, float x2, float y2) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DWaveExtensibleFileReader.java60 int x2; field in class:WaveExtensibleFileReader.GUID
77 GUID(long i1, int s1, int s2, int x1, int x2, int x3, int x4, argument
83 this.x2 = x2;
98 d.x2 = riff.readUnsignedByte();
124 if (x2 != t.x2)
/openjdk7/jdk/src/share/native/sun/java2d/pipe/
H A DShapeSpanIterator.c112 jfloat x2, jfloat y2);
116 jfloat x2, jfloat y2,
203 #define ADJUST2(pd, x1, y1, x2, y2) \
204 _ADJUST(pd, x2, y2, \
220 #define ADJUST3(pd, x1, y1, x2, y2, x3, y3) \
225 x2 += newadjx; \
254 #define HANDLEQUADTO(pd, x1, y1, x2, y2, OOMERR) \
256 ADJUST2(pd, x1, y1, x2, y2); \
259 x1, y1, x2, y2)) { \
264 PDBOXPOINT(pd, x2, y
416 jfloat x1, y1, x2, y2, x3, y3; local
801 PCQuadTo(PathConsumerVec *consumer, jfloat x1, jfloat y1, jfloat x2, jfloat y2) argument
814 PCCubicTo(PathConsumerVec *consumer, jfloat x1, jfloat y1, jfloat x2, jfloat y2, jfloat x3, jfloat y3) argument
1077 subdivideQuad(pathData *pd, int level, jfloat x0, jfloat y0, jfloat x1, jfloat y1, jfloat x2, jfloat y2) argument
1119 subdivideCubic(pathData *pd, int level, jfloat x0, jfloat y0, jfloat x1, jfloat y1, jfloat x2, jfloat y2, jfloat x3, jfloat y3) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DArc2D.java961 * @param x2 The X coordinate of the arc's ending point.
965 public void setAngles(double x1, double y1, double x2, double y2) { argument
974 double ang2 = Math.atan2(w * (y - y2), h * (x2 - x));
1054 double x1, y1, x2, y2;
1056 x1 = y1 = x2 = y2 = 0.0;
1059 x2 = y2 = -1.0;
1081 x2 = Math.max(x2, xe);
1086 x2 = (x2
[all...]
H A DPath2D.java382 double x2, double y2)
388 floatCoords[numCoords++] = (float) x2;
395 * coordinates and the specified coordinates {@code (x2,y2)},
406 * @param x2 the X coordinate of the final end point
412 float x2, float y2)
418 floatCoords[numCoords++] = x2;
427 double x2, double y2,
434 floatCoords[numCoords++] = (float) x2;
444 * using the specified points {@code (x1,y1)} and {@code (x2,y2)} as
454 * @param x2 th
381 quadTo(double x1, double y1, double x2, double y2) argument
411 quadTo(float x1, float y1, float x2, float y2) argument
426 curveTo(double x1, double y1, double x2, double y2, double x3, double y3) argument
461 curveTo(float x1, float y1, float x2, float y2, float x3, float y3) argument
1170 quadTo(double x1, double y1, double x2, double y2) argument
1185 curveTo(double x1, double y1, double x2, double y2, double x3, double y3) argument
1737 quadTo(double x1, double y1, double x2, double y2) argument
1756 curveTo(double x1, double y1, double x2, double y2, double x3, double y3) argument
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLBlitLoops.c473 srcInfo.bounds.x2 = sx2;
479 if (srcInfo.bounds.x2 > srcInfo.bounds.x1 &&
490 if (srcInfo.bounds.x2 != sx2) {
491 dx2 += (srcInfo.bounds.x2 - sx2) * (dw / sw);
492 sx2 = srcInfo.bounds.x2;
596 srcInfo.bounds.x2 = sx2;
605 if (srcInfo.bounds.x2 > srcInfo.bounds.x1 &&
618 if (srcInfo.bounds.x2 != sx2) {
619 dx2 += (srcInfo.bounds.x2 - sx2) * (dw / sw);
620 sx2 = srcInfo.bounds.x2;
[all...]
/openjdk7/jdk/src/macosx/native/sun/font/
H A DCGGlyphOutlines.m103 CGFloat x2 = p2.x;
111 CGFloat pathX2 = x2+tx;
118 fprintf(stderr, " x2=%f, y2=%f\n", x2, y2);
138 CGFloat x2 = p2.x;
148 CGFloat pathX2 = x2+tx;
157 fprintf(stderr, " x2=%f, y2=%f\n", x2, y2);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/algorithm/
H A DBASE64EncodingAlgorithm.java163 int x2 = decodeBase64[encodedValue.charAt(encodedIdx++) - '+'];
167 value[idx++] = (byte) ((x1 << 2) | (x2 >> 4));
169 value[idx++] = (byte) (((x2 & 0x0f) << 4) | (x3 >> 2));
/openjdk7/jdk/src/solaris/native/sun/java2d/x11/
H A DX11SurfaceData.c865 pRasInfo->bounds.x2,
872 pRasInfo->bounds.x2 = xsdo->surfInfo.visible.hix - wx;
898 if (pRasInfo->bounds.x2 > xsdo->pmWidth) {
899 pRasInfo->bounds.x2 = xsdo->pmWidth;
937 pRasInfo->bounds.x2,
944 pRasInfo->bounds.x2 = xsdo->surfInfo.visible.hix - wx;
980 w = pRasInfo->bounds.x2 - x;
1045 int w = pRasInfo->bounds.x2 - x;
1097 Position x1=0, y1=0, x2=0, y2=0; local
1143 x2
1171 int x1, y1, x2, y2, px1, py1, px2, py2, child_x, child_y; local
1703 Java_sun_java2d_x11_XSurfaceData_XSetClip(JNIEnv *env, jclass xsd, jlong xgc, jint x1, jint y1, jint x2, jint y2, jobject complexclip) argument
[all...]
/openjdk7/jdk/src/share/demo/applets/DrawTest/
H A DDrawTest.java113 int x2, y2; field in class:DrawPanel
138 x2 = e.getX();
163 x2 = -1;
183 x2 = -1;
221 if (x2 != -1) {
222 g.drawLine(x1, y1, x2, y2);
/openjdk7/jdk/src/solaris/classes/sun/java2d/xr/
H A DXRRenderer.java71 public void drawLine(SunGraphics2D sg2d, int x1, int y1, int x2, int y2) { argument
82 x2 + transx, y2 + transy);
193 public void drawLine(int x1, int y1, int x2, int y2) { argument
194 tileManager.addLine(x1, y1, x2, y2);
201 public void drawScanline(int x1, int x2, int y) { argument
202 tileManager.addRect(x1, y, x2 - x1 + 1, 1);
/openjdk7/jdk/src/share/classes/sun/font/
H A DDecoration.java265 float x2 = x1 + (float)label.getLogicalBounds().getWidth();
274 g2d.draw(new Line2D.Float(x1, strikeY, x2, strikeY));
282 stdUnderline.drawUnderline(g2d, ulThickness, x1, x2, y + ulOffset);
286 imUnderline.drawUnderline(g2d, ulThickness, x1, x2, y + ulOffset);
386 float x2 = x1 + (float)lb.getWidth();
392 x1, x2, y+ulOffset);
401 Line2D line = new Line2D.Float(x1, shiftY, x2, shiftY);
412 x1, x2, y+ulOffset);

Completed in 79 milliseconds

1234567891011>>