Searched defs:x1 (Results 101 - 125 of 168) sorted by relevance

1234567

/openjdk7/jdk/src/share/classes/sun/java2d/pisces/
H A DDasher.java168 public void lineTo(float x1, float y1) { argument
169 float dx = x1 - x0;
186 curCurvepts[0] = x1;
515 final float x1 = curve[i], y1 = curve[i+1];
516 final float len = Helpers.linelen(x0, y0, x1, y1);
519 x0 = x1;
532 public void curveTo(float x1, float y1, argument
537 curCurvepts[2] = x1; curCurvepts[3] = y1;
544 public void quadTo(float x1, float y1, float x2, float y2) { argument
546 curCurvepts[2] = x1; curCurvept
[all...]
H A DRenderer.java69 if ((bucketcount & 0x1) != 0) {
86 // if ((count & 0x1) != 0) {
191 float x1 = x0 + dx;
195 addLine(x0, y0, x1, y1);
196 x0 = x1;
226 float x1 = x0, y1 = y0;
249 x1 += dx;
256 x1 = x3;
259 addLine(x0, y0, x1, y1);
260 x0 = x1;
265 addLine(float x1, float y1, float x2, 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/native/sun/security/ec/impl/
H A Dec.c645 mp_int x1; local
661 MP_DIGITS(&x1) = 0;
688 CHECK_MPI_OK( mp_init(&x1, kmflag) );
726 ** Extract the x co-ordinate of kG into x1
728 CHECK_MPI_OK( mp_read_unsigned_octets(&x1, kGpoint.data + 1,
734 ** r = x1 mod n NOTE: n is the order of the curve
736 CHECK_MPI_OK( mp_mod(&x1, &n, &r) );
767 mp_tohex(&x1, mpstr);
768 printf("x1: %s\n", mpstr);
811 mp_clear(&x1);
884 mp_int x1; local
[all...]
/openjdk7/jdk/src/solaris/classes/sun/java2d/opengl/
H A DGLXGraphicsConfig.java313 int x1, int y1, int x2, int y2,
335 x1, y1, x2, y2,
336 x1, y1, x2, y2,
311 flip(X11ComponentPeer peer, Component target, VolatileImage xBackBuffer, int x1, int y1, int x2, int y2, BufferCapabilities.FlipContents flipAction) argument
/openjdk7/jdk/src/solaris/classes/sun/java2d/x11/
H A DX11Renderer.java82 int x1, int y1, int x2, int y2);
84 public void drawLine(SunGraphics2D sg2d, int x1, int y1, int x2, int y2) { argument
91 x1+transx, y1+transy, x2+transx, y2+transy);
423 int x1, int y1, int x2, int y2)
426 super.XDrawLine(pXSData, xgc, x1, y1, x2, y2);
81 XDrawLine(long pXSData, long xgc, int x1, int y1, int x2, int y2) argument
422 XDrawLine(long pXSData, long xgc, int x1, int y1, int x2, int y2) argument
/openjdk7/jdk/src/share/classes/javax/swing/plaf/nimbus/
H A DAbstractRegionPainter.java359 * @param x1
376 protected final LinearGradientPaint decodeGradient(float x1, float y1, float x2, float y2, float[] midpoints, Color[] colors) { argument
377 if (x1 == x2 && y1 == y2) {
380 return new LinearGradientPaint(x1, y1, x2, y2, midpoints, colors);
/openjdk7/jdk/src/share/classes/sun/awt/
H A DNullComponentPeer.java258 public void flip(int x1, int y1, int x2, int y2, argument
/openjdk7/jdk/src/share/classes/sun/awt/geom/
H A DCurve.java47 double x1, double y1)
51 x1, y1,
54 curves.add(new Order1(x1, y1,
204 * Calculates the number of times the line from (x0,y0) to (x1,y1)
212 double x1, double y1)
217 if (px >= x0 && px >= x1) return 0;
218 if (px < x0 && px < x1) return (y0 < y1) ? 1 : -1;
219 double xintercept = x0 + (py - y0) * (x1 - x0) / (y1 - y0);
225 * Calculates the number of times the quad from (x0,y0) to (x1,y1)
237 double x1, doubl
45 insertLine(Vector curves, double x0, double y0, double x1, double y1) argument
210 pointCrossingsForLine(double px, double py, double x0, double y0, double x1, double y1) argument
234 pointCrossingsForQuad(double px, double py, double x0, double y0, double xc, double yc, double x1, double y1, int level) argument
285 pointCrossingsForCubic(double px, double py, double x0, double y0, double xc0, double yc0, double xc1, double yc1, double x1, double y1, int level) argument
481 rectCrossingsForLine(int crossings, double rxmin, double rymin, double rxmax, double rymax, double x0, double y0, double x1, double y1) argument
555 rectCrossingsForQuad(int crossings, double rxmin, double rymin, double rxmax, double rymax, double x0, double y0, double xc, double yc, double x1, double y1, int level) argument
631 rectCrossingsForCubic(int crossings, double rxmin, double rymin, double rxmax, double rymax, double x0, double y0, double xc0, double yc0, double xc1, double yc1, double x1, double y1, int level) argument
732 orderof(double x1, double x2) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DPath2D.java381 public final synchronized void quadTo(double x1, double y1, argument
386 floatCoords[numCoords++] = (float) x1;
396 * using the specified point {@code (x1,y1)} as a quadratic
404 * @param x1 the X coordinate of the quadratic control point
411 public final synchronized void quadTo(float x1, float y1, argument
416 floatCoords[numCoords++] = x1;
426 public final synchronized void curveTo(double x1, double y1, argument
432 floatCoords[numCoords++] = (float) x1;
444 * using the specified points {@code (x1,y1)} and {@code (x2,y2)} as
452 * @param x1 th
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/hotspot/src/share/vm/opto/
H A Ddivnode.cpp1201 jint x1 = jint_cast(f1); // note: *(int*)&f1, not just (int)f1 local
1215 if ((x1 ^ xr) < 0) {
1245 jlong x1 = jlong_cast(f1); // note: *(long*)&f1, not just (long)f1 local
1259 if ((x1 ^ xr) < 0) {
/openjdk7/jdk/src/macosx/classes/sun/java2d/
H A DCRenderer.java46 native void doLine(SurfaceData sData, float x1, float y1, float x2, float y2); argument
48 public void drawLine(SunGraphics2D sg2d, int x1, int y1, int x2, int y2) { argument
49 drawLine(sg2d, (float) x1, (float) y1, (float) x2, (float) y2);
54 public void drawLine(SunGraphics2D sg2d, float x1, float y1, float x2, float y2) { argument
57 surfaceData.doLine(this, sg2d, x1, y1, x2, y2);
67 lineToShape.setLine(x1, y1, x2, y2);
334 float x1 = (float) line.getX1();
339 drawLine(sg2d, x1, y1, x2, y2);
606 void doLine(SurfaceData sData, float x1, float y1, float x2, float y2) { argument
608 super.doLine(sData, x1, y
[all...]
/openjdk7/jdk/src/windows/classes/sun/java2d/d3d/
H A DD3DSurfaceData.java734 final int x1, final int y1,
748 target.repaint(x1, y1, x2, y2);
761 buf.putInt(x1);
733 swapBuffers(D3DSurfaceData sd, final int x1, final int y1, final int x2, final int y2) argument
/openjdk7/jdk/src/windows/native/sun/java2d/windows/
H A DGDIRenderer.cpp127 jint x1, jint y1, jint x2, jint y2)
131 " color=0x%x x1=%-4d y1=%-4d x2=%-4d y2=%-4d",
132 color, x1, y1, x2, y2);
140 if (x1 == x2 || y1 == y2) {
141 if (x1 > x2) {
142 jint t = x1; x1 = x2; x2 = t;
151 ::PatBlt(hdc, x1, y1, x2-x1+1, y2-y1+1, patrop);
157 ::MoveToEx(hdc, x1, y
123 Java_sun_java2d_windows_GDIRenderer_doDrawLine(JNIEnv *env, jobject wr, jobject sData, jobject clip, jobject comp, jint color, jint x1, jint y1, jint x2, jint y2) argument
734 int mx = 0, my = 0, x1 = 0, y1 = 0; local
[all...]
/openjdk7/jdk/test/java/awt/Component/isLightweightCrash/
H A DStubPeerCrash.java121 public void flip(int x1, int y1, int x2, int y2, BufferCapabilities.FlipContents flipAction){}; argument
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DMaskFill.c64 rasInfo.bounds.x1 = x;
72 if (rasInfo.bounds.x2 > rasInfo.bounds.x1 &&
78 jint width = rasInfo.bounds.x2 - rasInfo.bounds.x1;
81 rasInfo.bounds.x1, rasInfo.pixelStride,
88 (rasInfo.bounds.x1 - x));
113 jdouble x1, jdouble y1, jdouble x2, jdouble y2)
115 jint cx1 = pRasInfo->bounds.x1;
119 jint rx1 = (jint) ceil(x1);
126 x1 = rx1-x1;
110 fillAARect(NativePrimitive *pPrim, SurfaceDataRasInfo *pRasInfo, CompositeInfo *pCompInfo, jint color, unsigned char *pMask, void *pDst, jdouble x1, jdouble y1, jdouble x2, jdouble y2) argument
541 fillAAPgram(NativePrimitive *pPrim, SurfaceDataRasInfo *pRasInfo, CompositeInfo *pCompInfo, jint color, unsigned char *pMask, void *pDst, jdouble x1, jdouble y1, jdouble dx1, jdouble dy1, jdouble dx2, jdouble dy2) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DGeneralRenderer.java160 int mx, my, x1, y1;
166 mx = x1 = xPoints[off] + transx;
173 x1, y1, x2, y2);
174 x1 = x2;
177 if (close && (x1 != mx || y1 != my)) {
179 x1, y1, mx, my);
184 int x1, int y1, int x2, int y2) {
186 (WritableRaster) sData.getRaster(x1, y1, x2-x1, y2-y1);
190 for (int x = x1;
183 doSetRect(SurfaceData sData, PixelWriter pw, int x1, int y1, int x2, int y2) argument
685 drawLine(int x0, int y0, int x1, int y1) argument
694 drawScanline(int x0, int x1, int y0) argument
744 DrawLine(SunGraphics2D sg2d, SurfaceData sData, int x1, int y1, int x2, int y2) argument
889 DrawLine(SunGraphics2D sg2d, SurfaceData sData, int x1, int y1, int x2, int y2) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/print/
H A DProxyGraphics.java357 * <code>(x1,&nbsp;y1)</code> and <code>(x2,&nbsp;y2)</code>
359 * @param x1 the first point's <i>x</i> coordinate.
364 public void drawLine(int x1, int y1, int x2, int y2) { argument
365 g.drawLine(x1, y1, x2, y2);
/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLContext.c226 jint x1, jint y1, jint x2, jint y2)
228 jint width = x2 - x1;
233 x1, y1, width, height);
252 j2d_glScissor(dstOps->xOffset + x1,
225 OGLContext_SetRectClip(OGLContext *oglc, OGLSDOps *dstOps, jint x1, jint y1, jint x2, jint y2) argument
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXEmbedChildProxyPeer.java264 public void flip(int x1, int y1, int x2, int y2, BufferCapabilities.FlipContents flipAction) { } argument
/openjdk7/jdk/src/solaris/classes/sun/awt/
H A DX11GraphicsConfig.java448 int x1, int y1, int x2, int y2,
446 flip(X11ComponentPeer peer, Component target, VolatileImage xBackBuffer, int x1, int y1, int x2, int y2, BufferCapabilities.FlipContents flipAction) argument
/openjdk7/jdk/src/share/classes/javax/swing/
H A DDebugGraphics.java509 public void drawLine(int x1, int y1, int x2, int y2) { argument
514 " Drawing line: from " + pointToString(x1, y1) +
522 debugGraphics.drawLine(x1, y1, x2, y2);
531 graphics.drawLine(x1, y1, x2, y2);
537 graphics.drawLine(x1, y1, x2, y2);
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DLambdaForm.java507 static Object interpret_L(MethodHandle mh, Object x1) throws Throwable { argument
508 Object[] av = {mh, x1};
515 static Object interpret_L(MethodHandle mh, Object x1, Object x2) throws Throwable { argument
516 Object[] av = {mh, x1, x2};
574 Object x1 = Wrapper.INT.wrap(w.wrap(x));
575 return x.equals(x1);
1618 static final native Object linkToStatic(Object x1, MemberName mn) throws Throwable;
1619 static final native Object linkToVirtual(Object x1, MemberName mn) throws Throwable;
1620 static final native Object linkToSpecial(Object x1, MemberName mn) throws Throwable;
1621 static final native Object linkToInterface(Object x1, MemberNam
[all...]
/openjdk7/hotspot/src/share/vm/code/
H A DrelocInfo.cpp597 jint x1 = scaled_offset_null_special(_oop_limit, point); local
598 p = pack_2_ints_to(p, x0, x1);
604 jint x0, x1; unpack_2_ints(x0, x1); local
607 _oop_limit = x1==0? NULL: address_from_scaled_offset(x1, point);
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DDLSSoundbank.java60 int x1; field in class:DLSSoundbank.DLSID
72 DLSID(long i1, int s1, int s2, int x1, int x2, int x3, int x4, argument
77 this.x1 = x1;
92 d.x1 = riff.readUnsignedByte();
113 && x1 == t.x1 && x2 == t.x2 && x3 == t.x3 && x4 == t.x4
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCFileDialog.java286 public void flip(int x1, int y1, int x2, int y2, FlipContents flipAction) { argument

Completed in 276 milliseconds

1234567