Searched refs:x2 (Results 51 - 75 of 319) sorted by relevance

1234567891011>>

/openjdk7/langtools/test/tools/javac/literals/
H A DBadUnderscoreLiterals.java30 int x2 = 0x0_; // trailing underscore field in class:BadUnderscoreLiterals
/openjdk7/langtools/test/tools/javac/warnings/6747671/
H A DT6747671.java25 A<String>.X x2;//ok
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DVertexCacher.cpp224 HRESULT D3DVertexCacher::DrawLine(int x1, int y1, int x2, int y2) argument
234 if (x1 > x2) {
235 fx1 = (float)x2+HV_FF3;
237 } else if (x1 < x2) {
239 fx2 = (float)x2+HV_FF2;
245 fx2 = (float)x2+SP_FF4;
248 } else if (x1 == x2) {
261 if (x1 > x2 && y1 > y2) {
264 fx1 = (float)x2;
268 } else if (x1 > x2
377 float x1, x2, y; local
404 float x1, y1, x2, y2; local
431 DrawRect(int x1, int y1, int x2, int y2) argument
457 FillRect(int x1, int y1, int x2, int y2) argument
645 DrawTexture(float x1, float y1, float x2, float y2, float u1, float v1, float u2, float v2) argument
670 DrawTexture(float x1, float y1, float x2, float y2, float u11, float v11, float u12, float v12, float u21, float v21, float u22, float v22) argument
[all...]
H A DD3DBlitLoops.cpp69 GETMIN(dst->x2, src->x2);
75 jint x1, jint y1, jint x2, jint y2)
80 GETMIN(bounds->x2, x2);
95 if (bounds->x2 > w) {
96 bounds->x2 = w;
118 GETMIN(dst->x2, src->x2 + dx);
122 GETMIN(src->x2, ds
74 SurfaceData_IntersectBoundsXYXY(SurfaceDataBounds *bounds, jint x1, jint y1, jint x2, jint y2) argument
[all...]
H A DD3DVertexCacher.h60 HRESULT DrawLine(int x1, int y1, int x2, int y2);
65 HRESULT DrawRect(int x1, int y1, int x2, int y2);
66 HRESULT FillRect(int x1, int y1, int x2, int y2);
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DDrawPolygons.c53 if (bounds->x2 > xmax) bounds->x2 = xmax;
56 bounds->x2 = bounds->x1;
80 jint x2 = transX + *xPointsPtr++; local
82 empty = (empty && x1 == x2 && y1 == y2);
85 x1, y1, x2, y2,
87 x1 = x2;
199 ok = (rasInfo.bounds.x2 > rasInfo.bounds.x1 &&
207 rasInfo.bounds.x2 > rasInfo.bounds.x1 &&
H A DLineUtils.h44 #define BUMP_NEG_PIXEL 0x2
48 extern jboolean LineUtils_SetupBresenham(jint x1, jint y1, jint x2, jint y2,
65 if (tx2 > (pRasInfo)->bounds.x2) tx2 = (pRasInfo)->bounds.x2; \
73 if (X1 >= (pRasInfo)->bounds.x1 && X1 < (pRasInfo)->bounds.x2) { \
H A DDrawLine.c38 RefineBounds(SurfaceDataBounds *bounds, jint x1, jint y1, jint x2, jint y2) argument
41 if (x1 < x2) {
43 max = x2;
45 min = x2;
54 if (bounds->x2 > max) bounds->x2 = max;
111 cxmax = pBounds->x2 - 1; \
390 jint x1, jint y1, jint x2, jint y2)
413 RefineBounds(&rasInfo.bounds, x1, y1, x2, y2);
419 if (rasInfo.bounds.x2 > rasInf
387 Java_sun_java2d_loops_DrawLine_DrawLine(JNIEnv *env, jobject self, jobject sg2d, jobject sData, jint x1, jint y1, jint x2, jint y2) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/pisces/
H A DStroker.java259 final float x2 = x1 - cv * omy;
267 emitCurveTo(x1, y1, x2, y2, x3, y3, x4, y4, rev);
470 final float x2, final float y2, final boolean rev)
475 out.quadTo(x1, y1, x2, y2);
481 final float x2, final float y2,
485 reverse.pushCubic(x0, y0, x1, y1, x2, y2);
487 out.curveTo(x1, y1, x2, y2, x3, y3);
523 final float x2, final float y2,
529 return (Helpers.within(x1, x2, ERR) && // we want to avoid calling Math.abs
534 float x2, floa
468 emitQuadTo(final float x0, final float y0, final float x1, final float y1, final float x2, final float y2, final boolean rev) argument
479 emitCurveTo(final float x0, final float y0, final float x1, final float y1, final float x2, final float y2, final float x3, final float y3, final boolean rev) argument
522 within(final float x1, final float y1, final float x2, final float y2, final float ERR) argument
533 getLineOffsets(float x1, float y1, float x2, float y2, float[] left, float[] right) argument
939 curveTo(float x1, float y1, float x2, float y2, float x3, float y3) argument
1031 quadTo(float x1, float y1, float x2, float y2) argument
1139 pushCubic(float x0, float y0, float x1, float y1, float x2, float y2) argument
[all...]
H A DCurve.java57 float x2, float y2,
61 ax = 3 * (x2 - x3) + x4 - x1;
63 bx = 3 * (x1 - 2 * x2 + x3);
65 cx = 3 * (x2 - x1);
74 float x2, float y2,
79 bx = x1 - 2 * x2 + x3;
81 cx = 2 * (x2 - x1);
56 set(float x1, float y1, float x2, float y2, float x3, float y3, float x4, float y4) argument
73 set(float x1, float y1, float x2, float y2, float x3, float y3) argument
/openjdk7/hotspot/test/runtime/6626217/
H A Dbug_21227.java26 many_loader[] x2 = bug.make(iface);
28 many_loader b = x2[0];
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/
H A DSPARCV9MembarInstruction.java51 if ((mmask & 0x2) != 0)
60 if ((cmask & 0x2) != 0)
/openjdk7/jdk/src/share/classes/sun/net/idn/
H A DStringPrepDataReader.java124 private static final byte DATA_FORMAT_VERSION[] = {(byte)0x3, (byte)0x2,
125 (byte)0x5, (byte)0x2};
/openjdk7/jdk/test/java/awt/Paint/
H A DPgramUserBoundsTest.java93 static void testLine(Graphics2D g2d, int x1, int y1, int x2, int y2) { argument
94 g2d.drawLine(x1, y1, x2, y2);
95 g2d.draw(new Line2D.Double(x1, y1, x2, y2));
103 double x2, double y2)
106 expectedBounds.setFrameFromDiagonal(x1, y1, x2, y2);
102 BoundsCheckerPaint(double x1, double y1, double x2, double y2) argument
/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DGeneralRenderer.java170 int x2 = xPoints[off] + transx;
173 x1, y1, x2, y2);
174 x1 = x2;
184 int x1, int y1, int x2, int y2) {
186 (WritableRaster) sData.getRaster(x1, y1, x2-x1, y2-y1);
190 for (int x = x1; x < x2; x++) {
216 int x2 = boundPts[2];
220 sData.getRaster(Math.min(x1, x2), Math.min(y1, y2),
221 Math.abs(x1 - x2) + 1, Math.abs(y1 - y2) + 1);
225 if (x1 == x2) {
183 doSetRect(SurfaceData sData, PixelWriter pw, int x1, int y1, int x2, int y2) 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/java/awt/geom/
H A DRectangle2D.java546 * @param x2 the X coordinate of the end point of the specified
555 public boolean intersectsLine(double x1, double y1, double x2, double y2) { argument
557 if ((out2 = outcode(x2, y2)) == 0) {
569 y1 = y1 + (x - x1) * (y2 - y1) / (x2 - x1);
576 x1 = x1 + (y - y1) * (x2 - x1) / (y2 - y1);
737 double x2 = Math.min(src1.getMaxX(), src2.getMaxX());
739 dest.setFrame(x1, y1, x2-x1, y2-y1);
776 double x2 = Math.max(src1.getMaxX(), src2.getMaxX());
778 dest.setFrameFromDiagonal(x1, y1, x2, y2);
802 double x2
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLSurfaceData.h195 #define GLRECT_BODY_XYXY(x1, y1, x2, y2) \
198 j2d_glVertex2i(x2, y1); \
199 j2d_glVertex2i(x2, y2); \
/openjdk7/hotspot/agent/src/os/solaris/proc/
H A Dsalibproc.h68 #define PR_ARG_CORES 0x2 /* Allow core file arguments */
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/posix/elf/
H A DELFSectionHeader.java89 public static final int FLAG_ALLOC = 0x2;
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DObjectReference.java142 static final int INVOKE_NONVIRTUAL = 0x2;
/openjdk7/jdk/test/com/sun/jdi/
H A DStringConvertTest.sh53 static JJ2 x2;
86 x2 = new JJ2("first JJ2");
93 System.out.println("x2 = " + x2);
148 cmd print $classname.x2
149 cmd print "$classname.x2.toString()"
/openjdk7/jdk/test/sun/security/provider/MessageDigest/
H A DTestSHAClone.java40 (byte)0x1, (byte)0x2, (byte)0x3
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DPixelDrawPipe.java44 int x1, int y1, int x2, int y2);
43 drawLine(SunGraphics2D sg, int x1, int y1, int x2, int y2) argument
H A DPixelToParallelogramConverter.java78 int x1, int y1, int x2, int y2)
80 if (!drawGeneralLine(sg2d, x1, y1, x2, y2)) {
81 super.drawLine(sg2d, x1, y1, x2, y2);
199 double x1, y1, x2, y2;
208 x2 = coords[2];
219 x2 = ux2 + tx;
226 x2 = ux2;
240 int ix2 = (int) Math.floor(x2 - sg2d.transX);
247 x2 = normalize(x2);
77 drawLine(SunGraphics2D sg2d, int x1, int y1, int x2, int y2) argument
[all...]
/openjdk7/langtools/test/tools/javac/generics/inference/6650759/
H A DT6650759g.java53 static <U, V> Iterable<V> m2(Iterable<U> x1, C<? super U, ? extends V> x2) { argument

Completed in 80 milliseconds

1234567891011>>