Searched refs:x2 (Results 26 - 50 of 319) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/sun/java2d/pisces/
H A DHelpers.java205 static float linelen(float x1, float y1, float x2, float y2) { argument
206 final float dx = x2 - x1;
278 float x2 = src[srcoff + 6];
285 right[rightoff + 6] = x2;
290 x2 = (x2 + ctrlx2) / 2.0f;
296 ctrlx2 = (x2 + centerx) / 2.0f;
313 right[rightoff + 4] = x2;
329 float x2 = src[srcoff + 6];
336 right[rightoff + 6] = x2;
[all...]
H A DTransformingPathConsumer2D.java137 float x2, float y2)
140 x2 + tx, y2 + ty);
144 float x2, float y2,
148 x2 + tx, y2 + ty,
191 float x2, float y2)
194 x2 * sx + tx, y2 * sy + ty);
198 float x2, float y2,
202 x2 * sx + tx, y2 * sy + ty,
252 float x2, float y2)
256 x2 * Mx
136 quadTo(float x1, float y1, float x2, float y2) argument
143 curveTo(float x1, float y1, float x2, float y2, float x3, float y3) argument
190 quadTo(float x1, float y1, float x2, float y2) argument
197 curveTo(float x1, float y1, float x2, float y2, float x3, float y3) argument
251 quadTo(float x1, float y1, float x2, float y2) argument
260 curveTo(float x1, float y1, float x2, float y2, float x3, float y3) argument
303 quadTo(float x1, float y1, float x2, float y2) argument
310 curveTo(float x1, float y1, float x2, float y2, float x3, float y3) argument
360 quadTo(float x1, float y1, float x2, float y2) argument
369 curveTo(float x1, float y1, float x2, float y2, float x3, float y3) argument
[all...]
/openjdk7/jdk/make/tools/src/build/tools/generatenimbus/
H A DShape.java40 public double getPaintX2() { return paintPoints.x2; }
55 @XmlAttribute double x2; field in class:Shape.PaintPoints
99 @XmlAttribute private double x2; field in class:Rectangle
100 public double getX2() { return x2; }
132 @XmlAttribute private double x2; field in class:Ellipse
133 public double getX2() { return x2; }
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DNormalizerDataReader.java386 private static final byte DATA_FORMAT_VERSION[] = {(byte)0x2, (byte)0x2,
387 (byte)0x5, (byte)0x2};
/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DCubicCurve2D.java112 public float x2; field in class:CubicCurve2D.Float
146 * @param x2 the X coordinate for the end point
155 float x2, float y2)
157 setCurve(x1, y1, ctrlx1, ctrly1, ctrlx2, ctrly2, x2, y2);
237 return (double) x2;
253 return new Point2D.Float(x2, y2);
263 double x2, double y2)
271 this.x2 = (float) x2;
291 * @param x2 th
152 Float(float x1, float y1, float ctrlx1, float ctrly1, float ctrlx2, float ctrly2, float x2, float y2) argument
260 setCurve(double x1, double y1, double ctrlx1, double ctrly1, double ctrlx2, double ctrly2, double x2, double y2) argument
297 setCurve(float x1, float y1, float ctrlx1, float ctrly1, float ctrlx2, float ctrly2, float x2, float y2) argument
395 public double x2; field in class:CubicCurve2D.Double
435 Double(double x1, double y1, double ctrlx1, double ctrly1, double ctrlx2, double ctrly2, double x2, double y2) argument
543 setCurve(double x1, double y1, double ctrlx1, double ctrly1, double ctrlx2, double ctrly2, double x2, double y2) argument
715 setCurve(double x1, double y1, double ctrlx1, double ctrly1, double ctrlx2, double ctrly2, double x2, double y2) argument
808 getFlatnessSq(double x1, double y1, double ctrlx1, double ctrly1, double ctrlx2, double ctrly2, double x2, double y2) argument
842 getFlatness(double x1, double y1, double ctrlx1, double ctrly1, double ctrlx2, double ctrly2, double x2, double y2) argument
1368 oppositeSigns(double x1, double x2) argument
[all...]
H A DRectangularShape.java241 * @param x2 the X coordinate of the end point of the specified diagonal
246 double x2, double y2) {
247 if (x2 < x1) {
249 x1 = x2;
250 x2 = t;
257 setFrame(x1, y1, x2 - x1, y2 - y1);
345 double x2 = Math.ceil(x + width);
348 (int) (x2 - x1), (int) (y2 - y1));
245 setFrameFromDiagonal(double x1, double y1, double x2, double y2) argument
H A DPoint2D.java282 * @param x2 the X coordinate of the second specified point
289 double x2, double y2)
291 x1 -= x2;
301 * @param x2 the X coordinate of the second specified point
308 double x2, double y2)
310 x1 -= x2;
288 distanceSq(double x1, double y1, double x2, double y2) argument
307 distance(double x1, double y1, double x2, double y2) argument
/openjdk7/jdk/src/share/native/sun/java2d/pipe/
H A DRegion.c70 pRgnInfo->bounds.x2 = pRgnInfo->bounds.y2 = 0x7fffffff;
75 pRgnInfo->bounds.x2 = (*env)->GetIntField(env, region, hixID);
90 b->x2 = b->y2 = 0x7fffffff;
94 b->x2 = (*env)->GetIntField(env, region, hixID);
134 if (xy1 >= pRgnInfo->bounds.x2) {
157 pSpan->x2 = pRgnInfo->bounds.x2;
193 if (xy1 >= pRgnInfo->bounds.x2) {
201 if (xy2 > pRgnInfo->bounds.x2) {
202 xy2 = pRgnInfo->bounds.x2;
242 RegionToYXBandedRectangles(JNIEnv *env, jint x1, jint y1, jint x2, jint y2, jobject region, RECT_T ** pRect, unsigned int initialBufferSize) argument
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/
H A DSurfaceData.c177 GETMIN(dst->x2, src->x2);
183 jint x1, jint y1, jint x2, jint y2)
188 GETMIN(bounds->x2, x2);
203 if (bounds->x2 > w) {
204 bounds->x2 = w;
226 GETMIN(dst->x2, src->x2 + dx);
230 GETMIN(src->x2, ds
182 SurfaceData_IntersectBoundsXYXY(SurfaceDataBounds *bounds, jint x1, jint y1, jint x2, jint y2) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftFilter.java49 // 0x2 = 3rd-order, 18 dB/oct
60 private float x2; field in class:SoftFilter
111 x2 = 0;
185 float x2 = this.x2;
203 float y = (a0*x + a1*x1 + a2*x2 - b1*y1 - b2*y2);
205 x2 = x1;
220 float y = (a0*x + a1*x1 + a2*x2 - b1*y1 - b2*y2);
222 x2 = x1;
242 float y = (a0*x + a1*x1 + a2*x2
[all...]
/openjdk7/jdk/src/share/classes/sun/font/
H A DUnderline.java56 * The underline is drawn from (x1, y) to (x2, y).
61 float x2,
76 float x2,
170 float x2,
176 g2d.draw(new Line2D.Float(x1, y + shift, x2, y + shift));
187 float x2,
191 Line2D line = new Line2D.Float(x1, y + shift, x2, y + shift);
213 float x2,
219 Line2D.Float drawLine = new Line2D.Float(x1, y, x2, y);
238 float x2,
58 drawUnderline(Graphics2D g2d, float thickness, float x1, float x2, float y) argument
74 getUnderlineShape(float thickness, float x1, float x2, float y) argument
167 drawUnderline(Graphics2D g2d, float thickness, float x1, float x2, float y) argument
185 getUnderlineShape(float thickness, float x1, float x2, float y) argument
210 drawUnderline(Graphics2D g2d, float thickness, float x1, float x2, float y) argument
236 getUnderlineShape(float thickness, float x1, float x2, float y) argument
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DScaledBlit.c364 srcInfo.bounds.x2 = sx2;
369 if (srcInfo.bounds.x2 <= srcInfo.bounds.x1 ||
391 dstInfo.bounds.x1 = dstInfo.bounds.x2 = idx1;
392 if (x >= srcInfo.bounds.x1 && x < srcInfo.bounds.x2) {
393 dstInfo.bounds.x2++;
400 dstInfo.bounds.x2 = refine(idx1, ddx1, tilesize, scalex,
401 (srcInfo.bounds.x2-sx1) << shift, sxinc);
428 if (dstInfo.bounds.x2 > dstInfo.bounds.x1 &&
463 span.x2-span.x1, span.y2-span.y1,
474 jint x1, y1, x2, y local
[all...]
H A DDrawRect.c80 if (rasInfo.bounds.x2 > hix) rasInfo.bounds.x2 = hix;
86 if (rasInfo.bounds.x2 > rasInfo.bounds.x1 &&
94 int xsize = (rasInfo.bounds.x2 - rasInfo.bounds.x1);
119 if (hix == rasInfo.bounds.x2 && ysize > 0 && lox != hix - 1) {
122 rasInfo.bounds.x2 - 1, rasInfo.bounds.y1 + loyin,
H A DFillRect.c67 rasInfo.bounds.x2 <= rasInfo.bounds.x1)
76 if (rasInfo.bounds.x2 > rasInfo.bounds.x1 &&
83 rasInfo.bounds.x2, rasInfo.bounds.y2,
/openjdk7/hotspot/test/compiler/7047069/
H A DTest7047069.java81 float x2 = src[srcoff + 4];
88 right[rightoff + 4] = x2;
93 x2 = (x2 + ctrlx) / 2f;
95 ctrlx = (x1 + x2) / 2f;
106 right[rightoff + 2] = x2;
/openjdk7/jdk/test/java/lang/StringBuffer/
H A DIndexOf.java147 int x2 = 1000;
148 while(x2 > testString.length()) {
150 x2 = generator.nextInt(100);
151 x2 = x1 + x2;
153 String fragment = testString.substring(x1,x2);
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_ImageColormap.h125 #define FIND_DISTANCE_3( x1, x2, y1, y2, z1, z2, SHIFT ) \
126 (( ( ( ( x1 ) - ( x2 ) ) * ( ( x1 ) - ( x2 ) ) ) >> SHIFT ) + \
131 #define FIND_DISTANCE_4( x1, x2, y1, y2, z1, z2, w1, w2, SHIFT ) \
132 (( ( ( ( x1 ) - ( x2 ) ) * ( ( x1 ) - ( x2 ) ) ) >> SHIFT ) + \
/openjdk7/jdk/src/solaris/classes/sun/java2d/xr/
H A DMaskTile.java52 public void addLine(int x1, int y1, int x2, int y2) { argument
59 region.setDirtyLineRegion(x1, y1, x2, y2);
60 int xDiff = region.x2 - region.x;
65 region.x2 - region.x + 1, region.y2 - region.y + 1);
68 addRect(x2, y2, 1, 1);
70 lineToRects(x1, y1, x2, y2);
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DfreeChunk.hpp87 return (((intptr_t)_prev) & 0x2) == 0x2;
92 _prev = (FreeChunk*)(((intptr_t)_prev) | 0x2);
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DLWCanvasPeer.java76 public void flip(final int x1, final int y1, final int x2, final int y2, argument
84 g.drawImage(buffer, x1, y1, x2, y2, x1, y1, x2, y2, null);
/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DDrawLine.java78 int x1, int y1, int x2, int y2);
108 int x1, int y1, int x2, int y2)
111 target.DrawLine(sg2d, dest, x1, y1, x2, y2);
77 DrawLine(SunGraphics2D sg2d, SurfaceData dest, int x1, int y1, int x2, int y2) argument
107 DrawLine(SunGraphics2D sg2d, SurfaceData dest, int x1, int y1, int x2, int y2) argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/win32/coff/
H A DDebugVC50TypeEnums.java292 public static final int RESERVED_SIZE_SPECIAL_SEGMENT = 0x2;
301 public static final int RESERVED_SIZE_INT_4_BYTE = 0x2;
306 public static final int RESERVED_SIZE_REAL_80_BIT = 0x2;
315 public static final int RESERVED_SIZE_REALLY_INT_2_BYTE = 0x2; // 2 byte signed integer
/openjdk7/jdk/src/share/classes/java/awt/
H A DGradientPaint.java75 * @param x2 x coordinate of the second specified
86 float x2,
94 p2 = new Point2D.Float(x2, y2);
134 * @param x2 x coordinate of the second specified
146 float x2,
150 this (x1, y1, color1, x2, y2, color2);
83 GradientPaint(float x1, float y1, Color color1, float x2, float y2, Color color2) argument
143 GradientPaint(float x1, float y1, Color color1, float x2, float y2, Color color2, boolean cyclic) argument
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dimg_util_md.h54 extern int image_Done(IRData *ird, int x1, int y1, int x2, int y2);
56 extern void *image_InitMask(IRData *ird, int x1, int y1, int x2, int y2);
63 #define ImgInitMask(cvdata, x1, y1, x2, y2) \
64 image_InitMask((IRData *)cvdata, x1, y1, x2, y2)
/openjdk7/langtools/test/com/sun/javadoc/testTagInheritence/pkg/
H A DTestAbstractClass.java67 * @param x2 Test 35 passes.
71 public <P,Q> String testSuperSuperMethod2(int x1, int x2) { argument

Completed in 175 milliseconds

1234567891011>>