Searched refs:x2 (Results 201 - 225 of 319) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/solaris/native/sun/awt/medialib/
H A Dmlib_v_ImageAffine_BL_S16.c96 #define DOUBLE_4U16(x0, x1, x2, x3) \
98 ((((x2) & 0xFFFE) << 15) | (((x3) & 0xFFFE) >> 1)))
232 mlib_s32 x0, x1, x2, x3, y0, y1, y2, y3; variable
255 x2 = x1 + dX; y2 = y1 + dY;
256 x3 = x2 + dX; y3 = y2 + dY;
258 deltax = DOUBLE_4U16(x0, x1, x2, x3);
H A Dmlib_v_ImageAffine_BL_U16.c89 #define DOUBLE_4U16(x0, x1, x2, x3) \
91 ((((x2) & 0xFFFE) << 15) | (((x3) & 0xFFFE) >> 1)))
225 mlib_s32 x0, x1, x2, x3, y0, y1, y2, y3; variable
248 x2 = x1 + dX; y2 = y1 + dY;
249 x3 = x2 + dX; y3 = y2 + dY;
251 deltax = DOUBLE_4U16(x0, x1, x2, x3);
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DRegion.java406 int x2 = clipScale(bands[i++], sx);
407 if (x1 < x2) {
409 newbands[j++] = x2;
510 int x2 = clipAdd(bands[i++], dx);
511 if (x1 < x2) {
513 newbands[j++] = x2;
H A DLoopPipe.java58 int x1, int y1, int x2, int y2)
64 x2 + tX, y2 + tY);
57 drawLine(SunGraphics2D sg2d, int x1, int y1, int x2, int y2) argument
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXFileDialogPeer.java863 int x1, y1, x2, y2;
871 x2 = bbox.width - 1;
876 x1 = x2 = bbox.width/2 - 1;
881 g.drawLine(x1, y2, x2, y2);
884 g.drawLine(x1, y2+1, x2, y2+1);
886 g.drawLine(x1+1, y2, x2+1, y2);
H A DXScrollbar.java144 int x2 = (up ? getArrowWidth() : barLength - getArrowWidth() - ARROW_IND);
146 arrow.addPoint(x2, y + getArrowWidth());
147 arrow.addPoint(x2, y);
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DContext.cpp984 D3DContext::SetRectClip(int x1, int y1, int x2, int y2) argument
992 " x1=%-4d y1=%-4d x2=%-4d y2=%-4d",
993 x1, y1, x2, y2);
1009 (UINT)x2 >= desc.Width && (UINT)y2 >= desc.Height)
1020 if ((UINT)x2 > desc.Width) x2 = desc.Width;
1022 if (x1 > x2) x2 = x1 = 0;
1024 RECT newRect = { x1, y1, x2, y2 };
1030 " x1=%-4d y1=%-4d x2
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthTableUI.java646 int x2 = x1 + vacatedColumnRect.width - 1;
651 synthG.drawLine(context, "Table.grid", g, x2, y1, x2, y2);
667 int x2 = x1 + rcr.width - 1;
669 synthG.drawLine(context, "Table.grid", g, x1, y2, x2, y2);
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmsgamma.c854 cmsFloat64Number a = 0, b = 0, y, x1, y1, x2, y2; local
888 x2 = InCurve ->Table16[j+1];
894 if (x1 == x2) {
902 a = (y2 - y1) / (x2 - x1);
903 b = y2 - a * x2;
/openjdk7/jdk/src/share/classes/javax/swing/plaf/nimbus/
H A DAbstractRegionPainter.java361 * @param x2
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/windows/classes/sun/java2d/d3d/
H A DD3DSurfaceData.java735 final int x2, final int y2)
748 target.repaint(x1, y1, x2, y2);
763 buf.putInt(x2);
733 swapBuffers(D3DSurfaceData sd, final int x1, final int y1, final int x2, final int y2) argument
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DGraphicsPrimitiveMgr.c163 if (bounds->x2 > xmax) bounds->x2 = xmax;
166 bounds->x2 = bounds->x1;
/openjdk7/hotspot/src/share/vm/opto/
H A Ddivnode.cpp1202 jint x2 = jint_cast(f2); local
1209 if (!g_isfinite(f1) || !g_isfinite(f2) || x2 == 0 || x2 == min_jint)
1246 jlong x2 = jlong_cast(f2); local
1253 if (!g_isfinite(f1) || !g_isfinite(f2) || x2 == 0 || x2 == min_jlong)
/openjdk7/jdk/src/share/classes/java/awt/font/
H A DTextLayout.java1646 double x2 = -3141.59, y2 = -2.7; // values are there to make compiler happy
1680 x2 = x1 + (top-y1)/slope;
1694 x2 = x0 + (bottom-x1)/slope;
1724 x2 = left;
1738 x2 = right;
1746 new double[] { x0, y0, x2, y2, x1, y1 } :
/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalUtils.java374 Color c1, float x2, float y2,
376 return new GradientPaint(x1, y1, c1, x2, y2, c2, true);
373 getGradient(float x1, float y1, Color c1, float x2, float y2, Color c2) argument
/openjdk7/jdk/src/macosx/classes/sun/java2d/opengl/
H A DCGLGraphicsConfig.java367 int x1, int y1, int x2, int y2,
386 pView.drawImageOnPeer(xBackBuffer, x1, y1, x2, y2);
365 flip(CPlatformView pView, Component target, VolatileImage xBackBuffer, int x1, int y1, int x2, int y2, BufferCapabilities.FlipContents flipAction) argument
/openjdk7/jdk/test/sun/java2d/OpenGL/
H A DDrawBufImgOp.java373 int x2 = refImg.getWidth();
377 for (int x = x1; x < x2; x++) {
/openjdk7/jdk/src/share/classes/javax/security/auth/kerberos/
H A DServicePermission.java113 private final static int ACCEPT = 0x2;
/openjdk7/jdk/src/share/classes/java/util/
H A DPropertyPermission.java102 private final static int WRITE = 0x2;
/openjdk7/hotspot/src/share/vm/classfile/
H A DverificationType.hpp80 Uninitialized = 0x2, // 0x00ffff00 contains bci
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1OopClosures.hpp87 #define G1_PARTIAL_ARRAY_MASK 0x2
/openjdk7/jdk/src/share/classes/java/awt/
H A DComponent.java4073 void flipSubRegion(int x1, int y1, int x2, int y2, argument
4077 peer.flip(x1, y1, x2, y2, flipAction);
4196 void showSubRegion(int x1, int y1, int x2, int y2) { argument
4197 flipSubRegion(x1, y1, x2, y2, caps.getFlipContents());
4369 void showSubRegion(int x1, int y1, int x2, int y2) { argument
4375 x2 -= insets.left;
4389 x1, y1, x2, y2,
4390 x1, y1, x2, y2,
4482 public void show(int x1, int y1, int x2, int y2) { argument
4483 showSubRegion(x1, y1, x2, y
4487 showIfNotLost(int x1, int y1, int x2, int y2) argument
4512 show(int x1, int y1, int x2, int y2) argument
4517 showIfNotLost(int x1, int y1, int x2, int y2) argument
[all...]
H A DGraphics.java388 * <code>(x1,&nbsp;y1)</code> and <code>(x2,&nbsp;y2)</code>
392 * @param x2 the second point's <i>x</i> coordinate.
395 public abstract void drawLine(int x1, int y1, int x2, int y2); argument
/openjdk7/jdk/make/tools/src/build/tools/charsetmapping/
H A DJIS0213.java108 private final static int MAP_DOUBLEBYTE1 = 0x2; // min..max: c
/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 114 milliseconds

1234567891011>>