Searched defs:x1 (Results 51 - 75 of 168) sorted by relevance

1234567

/openjdk7/jdk/make/tools/src/build/tools/generatenimbus/
H A DShape.java39 public double getPaintX1() { return paintPoints.x1; }
53 @XmlAttribute double x1; field in class:Shape.PaintPoints
96 @XmlAttribute private double x1; field in class:Rectangle
97 public double getX1() { return x1; }
110 double rounding = Math.abs(roundingX - x1) * 2;
118 roundingX = rounding / 2d + x1;
129 @XmlAttribute private double x1; field in class:Ellipse
130 public double getX1() { return x1; }
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCPlatformView.java113 public void drawImageOnPeer(VolatileImage xBackBuffer, int x1, int y1, int x2, int y2) { argument
116 g.drawImage(xBackBuffer, x1, y1, x2, y2, x1, y1, x2, y2, null);
/openjdk7/jdk/src/solaris/native/sun/awt/medialib/
H A Dmlib_v_ImageAffine_BL_S16.c96 #define DOUBLE_4U16(x0, x1, x2, x3) \
97 vis_to_double(((((x0) & 0xFFFE) << 15) | (((x1) & 0xFFFE) >> 1)), \
232 mlib_s32 x0, x1, x2, x3, y0, y1, y2, y3; variable
254 x1 = x0 + dX; y1 = y0 + dY;
255 x2 = x1 + dX; y2 = y1 + dY;
258 deltax = DOUBLE_4U16(x0, x1, x2, x3);
358 mlib_s32 x0, x1, y0, y1; variable
380 x1 = X; y1 = Y;
383 x1 = X + dX; y1 = Y + dY;
386 deltax = DOUBLE_4U16(x0, x0, x1, x
482 mlib_s32 x0, x1, y0, y1; variable
[all...]
H A Dmlib_v_ImageAffine_BL_U16.c89 #define DOUBLE_4U16(x0, x1, x2, x3) \
90 vis_to_double(((((x0) & 0xFFFE) << 15) | (((x1) & 0xFFFE) >> 1)), \
225 mlib_s32 x0, x1, x2, x3, y0, y1, y2, y3; variable
247 x1 = x0 + dX; y1 = y0 + dY;
248 x2 = x1 + dX; y2 = y1 + dY;
251 deltax = DOUBLE_4U16(x0, x1, x2, x3);
351 mlib_s32 x0, x1, y0, y1; variable
373 x1 = X; y1 = Y;
376 x1 = X + dX; y1 = Y + dY;
379 deltax = DOUBLE_4U16(x0, x0, x1, x
475 mlib_s32 x0, x1, y0, y1; variable
[all...]
/openjdk7/jdk/src/solaris/native/sun/java2d/loops/
H A Dvis_ByteGray.c322 mlib_s32 x0, x1; local
324 x1 = pSrc[2*((tmpsxloc + sxinc) >> shift)];
325 *(mlib_u16*)pDst = (x0 << 8) | x1;
723 mlib_s32 i, j, x0, x1, mask, res; local
782 x1 = src[1];
783 res = (LutU32[x0] << 8) | LutU32[x1];
891 mlib_s32 i, j, x0, x1, mask, res; local
952 x1 = src[(tmpsxloc + sxinc) >> shift];
953 res = (LutU32[x0] << 8) | LutU32[x1];
/openjdk7/jdk/src/windows/classes/sun/awt/
H A DWin32GraphicsConfig.java307 int x1, int y1, int x2, int y2,
315 x1, y1, x2, y2,
316 x1, y1, x2, y2,
305 flip(WComponentPeer peer, Component target, VolatileImage backBuffer, int x1, int y1, int x2, int y2, BufferCapabilities.FlipContents flipAction) argument
/openjdk7/jdk/src/windows/classes/sun/java2d/d3d/
H A DD3DGraphicsConfig.java169 // be at least 1x1 to avoid IAE
181 int x1, int y1, int x2, int y2,
191 D3DSurfaceData.swapBuffers(d3dsd, x1, y1, x2, y2);
197 x1, y1, x2, y2,
198 x1, y1, x2, y2,
179 flip(WComponentPeer peer, Component target, VolatileImage backBuffer, int x1, int y1, int x2, int y2, BufferCapabilities.FlipContents flipAction) argument
H A DD3DRenderer.java153 int x1, int y1, int x2, int y2)
156 d3dr.drawLine(sg2d, x1, y1, x2, y2);
152 drawLine(SunGraphics2D sg2d, int x1, int y1, int x2, int y2) argument
/openjdk7/jdk/src/windows/native/java/net/
H A DDualStackPlainDatagramSocketImpl.c81 DWORD x1, x2; /* ignored result codes */ local
105 WSAIoctl(fd ,SIO_UDP_CONNRESET ,&t ,sizeof(t) ,&x1 ,sizeof(x1) ,&x2 ,0 ,0);
145 DWORD x1, x2; /* ignored result codes */ local
160 WSAIoctl(fd, SIO_UDP_CONNRESET, &t, sizeof(t), &x1, sizeof(x1), &x2, 0, 0);
172 DWORD x1, x2; /* ignored result codes */ local
179 WSAIoctl(fd, SIO_UDP_CONNRESET, &t, sizeof(t), &x1, sizeof(x1), &x2, 0, 0);
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DRenderer.cpp36 jint x1, jint y1, jint x2, jint y2)
39 "D3DRenderer_doDrawLineD3D x1=%-4d y1=%-4d x2=%-4d y2=%-4d",
40 x1, y1, x2, y2);
42 return d3dc->pVCacher->DrawLine(x1, y1, x2, y2);
35 D3DRenderer_DrawLine(D3DContext *d3dc, jint x1, jint y1, jint x2, jint y2) argument
/openjdk7/jdk/test/java/awt/MouseAdapter/MouseAdapterUnitTest/
H A DMouseAdapterUnitTest.java164 public static void moveMouse(int x0, int y0, int x1, int y1){ argument
167 int dx = x0 < x1 ? 1 : -1;
170 while (curX != x1){
/openjdk7/jdk/test/java/lang/reflect/Generics/
H A DTestN1.java68 X1 x1; field in class:N1.Inner3
70 Inner3(X1 x1, X2 x2, X3 x3, T1 t1, T2 t2) {} argument
72 <T, R, S> Inner3(T t, R r, S s, X1 x1) {} argument
85 <X3> X3[] bar(X1 x1, X3[] x3, T1 t1) { return x3;} argument
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DList.java88 public static <A> List<A> of(A x1) { argument
89 return new List<A>(x1, List.<A>nil());
94 public static <A> List<A> of(A x1, A x2) { argument
95 return new List<A>(x1, of(x2));
100 public static <A> List<A> of(A x1, A x2, A x3) { argument
101 return new List<A>(x1, of(x2, x3));
107 public static <A> List<A> of(A x1, A x2, A x3, A... rest) { argument
108 return new List<A>(x1, new List<A>(x2, new List<A>(x3, from(rest))));
/openjdk7/jdk/src/share/demo/management/MemoryMonitor/
H A DMemoryMonitor.java197 public void plotMemoryUsage(int x1, int y1, int x2, int y2, int npool) { argument
213 big.drawString(String.valueOf((int)totalMemory/1024) + "K Max ", x1+4.0f, (float) y1 + ascent+0.5f);
217 big.drawString(mp.getName(), x1+x2/2, (float) y1 + ascent+0.5f);
223 big.drawString(usedStr, x1+4, y1+y2-descent);
237 mfRect.setRect(x1+5,(float) y1+ssH+i*blockHeight,
245 muRect.setRect(x1+5,(float) y1 + ssH+i*blockHeight,
254 int graphX = x1+30;
/openjdk7/jdk/src/share/native/sun/java2d/
H A DSurfaceData.c175 GETMAX(dst->x1, src->x1);
183 jint x1, jint y1, jint x2, jint y2)
186 GETMAX(bounds->x1, x1);
200 if (bounds->x1 < x) {
201 bounds->x1 = x;
224 GETMAX(dst->x1, src->x1 + dx);
228 GETMAX(src->x1, ds
182 SurfaceData_IntersectBoundsXYXY(SurfaceDataBounds *bounds, jint x1, jint y1, jint x2, jint y2) argument
[all...]
H A DSurfaceData.h44 * All coordinates (x1 <= x < x2, y1 <= y < y2) are considered to
48 jint x1; member in struct:__anon811
65 * for each x, y pair such that (bounds.x1 <= x < bounds.x2) and
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DDrawLine.c38 RefineBounds(SurfaceDataBounds *bounds, jint x1, jint y1, jint x2, jint y2) argument
41 if (x1 < x2) {
42 min = x1;
46 max = x1;
53 if (bounds->x1 < min) bounds->x1 = min;
109 cxmin = pBounds->x1; \
390 jint x1, jint y1, jint x2, jint y2)
413 RefineBounds(&rasInfo.bounds, x1, y1, x2, y2);
419 if (rasInfo.bounds.x2 > rasInfo.bounds.x1
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...]
H A DDrawPolygons.c51 if (bounds->x1 < xmin) bounds->x1 = xmin;
56 bounds->x2 = bounds->x1;
75 jint x0, y0, x1, y1; local
77 x0 = x1 = transX + *xPointsPtr++;
82 empty = (empty && x1 == x2 && y1 == y2);
85 x1, y1, x2, y2,
87 x1 = x2;
90 if (close && (empty || x1 != x0 || y1 != y0)) {
93 x1, y
[all...]
H A DScaledBlit.c121 * accuracy on a sliding scale down to a tilesize of 1x1 when
317 * - tilesize will end up being 1x1 tiles
362 srcInfo.bounds.x1 = sx1;
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) {
396 dstInfo.bounds.x1 = ((srcInfo.bounds.x1 <= sx1)
399 (srcInfo.bounds.x1-sx1) << shift, sxinc));
428 if (dstInfo.bounds.x2 > dstInfo.bounds.x1
474 jint x1, y1, x2, y2; local
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/opengl/
H A DOGLRenderer.java152 int x1, int y1, int x2, int y2)
155 oglr.drawLine(sg2d, x1, y1, x2, y2);
151 drawLine(SunGraphics2D sg2d, int x1, int y1, int x2, int y2) argument
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DLoopPipe.java58 int x1, int y1, int x2, int y2)
63 x1 + tX, y1 + tY,
57 drawLine(SunGraphics2D sg2d, int x1, int y1, int x2, int y2) argument
H A DNullPipe.java50 int x1, int y1, int x2, int y2) {
49 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;
206 x1 = coords[0];
217 x1 = ux1 + tx;
224 x1 = ux1;
238 int ix1 = (int) Math.floor(x1 - sg2d.transX);
245 x1 = normalize(x1);
77 drawLine(SunGraphics2D sg2d, int x1, int y1, int x2, int y2) argument
[all...]
H A DShapeSpanIterator.java193 public native void quadTo(float x1, float y1, argument
195 public native void curveTo(float x1, float y1, argument
/openjdk7/jdk/src/share/classes/sun/java2d/pisces/
H A DCurve.java56 void set(float x1, float y1, argument
61 ax = 3 * (x2 - x3) + x4 - x1;
63 bx = 3 * (x1 - 2 * x2 + x3);
65 cx = 3 * (x2 - x1);
67 dx = x1;
73 void set(float x1, float y1, argument
79 bx = x1 - 2 * x2 + x3;
81 cx = 2 * (x2 - x1);
83 dx = x1;
141 // position requires that 2 initial values x0,x1 b
188 falsePositionROCsqMinusX(float x0, float x1, final float x, final float err) argument
[all...]

Completed in 64 milliseconds

1234567