Searched refs:x2 (Results 101 - 125 of 319) sorted by relevance

1234567891011>>

/openjdk7/jdk/test/sun/security/util/BitArray/
H A DNamedBitList.java54 NetscapeCertTypeExtension x2 = new NetscapeCertTypeExtension(bb);
55 check(new DerValue(x2.getExtensionValue()).getUnalignedBitString().length(), 3);
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DMaskFill.c66 rasInfo.bounds.x2 = x + w;
72 if (rasInfo.bounds.x2 > rasInfo.bounds.x1 &&
78 jint width = rasInfo.bounds.x2 - rasInfo.bounds.x1;
113 jdouble x1, jdouble y1, jdouble x2, jdouble y2)
117 jint cx2 = pRasInfo->bounds.x2;
121 jint rx2 = (jint) floor(x2);
128 x2 = x2-rx2;
138 x1 = x1 + x2 - 1.0;
153 pMask[width-1] = DblToMask(y1 * x2);
110 fillAARect(NativePrimitive *pPrim, SurfaceDataRasInfo *pRasInfo, CompositeInfo *pCompInfo, jint color, unsigned char *pMask, void *pDst, jdouble x1, jdouble y1, jdouble x2, jdouble y2) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DProcessPath.java135 int x2, int y2, int [] pixelInfo,
553 * (x1, y1), (x2, y2) - fixed point coordinates of the endpoints
575 public void processFixedLine(int x1, int y1, int x2, int y2, argument
580 int c = ((x1 ^ x2) | (y1 ^ y2));
593 if (x1 == x2 || y1 == y2) {
595 rx2 = x2 + MDP_HALF_MULT;
600 int dx = x2 - x1;
603 /* Floor of x1, y1, x2, y2 */
606 int fx2 = x2 & MDP_W_MASK;
617 /* Boundary at the direction from (x1,y1) to (x2,y
134 processFixedLine(int x1, int y1, int x2, int y2, int [] pixelInfo, boolean checkBounds, boolean endSubPath) argument
1359 ProcessLine(ProcessHandler hnd, float x1, float y1, float x2, float y2, int[] pixelInfo) argument
2027 processFixedLine(int x1, int y1, int x2, int y2, int[] pixelInfo, boolean checkBounds, boolean endSubPath) argument
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DconcurrentGCThread.hpp88 CGC_CGC_safepoint = 0x2,
/openjdk7/jdk/src/share/classes/java/awt/event/
H A DHierarchyEvent.java144 public static final int DISPLAYABILITY_CHANGED = 0x2;
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DPlatformWindow.java108 public void flip(int x1, int y1, int x2, int y2, argument
/openjdk7/jdk/src/windows/classes/sun/java2d/d3d/
H A DD3DGraphicsConfig.java181 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
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_error.h63 #define LOG_DUMP_LISTS 0x2 /* Dump tables at vm init and death */
/openjdk7/jdk/test/java/util/EnumSet/
H A DBogusEnumSet.java40 0x7e, (byte)0xb0, (byte)0xd0, 0x7e, 0x2, 0x0, 0x1, 0x4a, 0x0, 0x8,
44 0x3, 0x21, 0x6a, (byte)0xcd, (byte)0x8c, 0x29, (byte)0xdd, 0x2,
45 0x0, 0x2, 0x4c, 0x0, 0xb, 0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74,
60 (byte)0xb5, (byte)0xd5, 0x11, 0x7d, 0x1b, (byte)0xb3, 0x2, 0x0,
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXUtilConstants.java107 public static final int VisualScreenMask = 0x2 ;
/openjdk7/langtools/test/tools/javac/generics/odersky/
H A DList.java56 public static <A> List<A> make(A x1, A x2) { argument
57 return new List<A>(x1, new List<A>(x2, new List<A>()));
62 public static <A> List<A> make(A x1, A x2, A x3) { argument
63 return new List<A>(x1, new List<A>(x2, new List<A>(x3, new List<A>())));
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DGifImageDecoder.java361 int rasbeg, rasend, x2;
377 x2 = 0; // same as (x2 = x + rasbeg)
381 x2 = x; // same as (x2 = x + rasbeg)
383 // rasline[rasbeg] == pixel at coordinate (x2,y)
385 // rasline[rasbeg + width] == pixel at coordinate (x2+width, y)
386 if (x2 + width > global_width) {
387 width = global_width - x2;
393 // rasline[rasbeg] == pixel at coordinate (x2,
[all...]
/openjdk7/jdk/src/solaris/native/sun/java2d/x11/
H A DX11PMBlitLoops.c77 srcBounds.x2 = srcx + width;
83 span.x2 = dstx + width;
107 span.x2 - span.x1, span.y2 - span.y1,
173 srcBounds.x2 = srcx + width;
179 dstBounds.x2 = dstx + width;
189 width = srcBounds.x2 - srcBounds.x1;
271 srcInfo.bounds.x2 = width;
/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLRenderer.c66 OGLRenderer_DrawLine(OGLContext *oglc, jint x1, jint y1, jint x2, jint y2) argument
77 GLfloat fx2 = (GLfloat)x2;
80 if (x1 > x2) {
86 } else if (x1 == x2) {
102 GLfloat fx2 = (GLfloat)x2;
105 if (x1 < x2) {
288 GLfloat x2 = ((GLfloat)*(scanlines++)) + 1.2f; local
291 j2d_glVertex2f(x2, y);
323 jint x2 = *(spans++); local
325 GLRECT_BODY_XYXY(x1, y1, x2, y
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/widgets/
H A DMultiConnectionWidget.java144 int x2 = r.to.x;
147 if (x > x2) {
149 x = x2;
150 x2 = tmp;
159 int width = x2 - x + 1;
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthGraphicsUtils.java72 * @param x2 x destination
76 Graphics g, int x1, int y1, int x2, int y2) {
77 g.drawLine(x1, y1, x2, y2);
94 * @param x2 x destination
100 Graphics g, int x1, int y1, int x2, int y2,
104 if (x1 == x2) {
108 g.drawLine(x1, y, x2, y);
114 for (int x = x1; x <= x2; x+=2) {
120 drawLine(context, paintKey, g, x1, y1, x2, y2);
295 int x2
75 drawLine(SynthContext context, Object paintKey, Graphics g, int x1, int y1, int x2, int y2) argument
99 drawLine(SynthContext context, Object paintKey, Graphics g, int x1, int y1, int x2, int y2, Object styleKey) argument
[all...]
/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/langtools/src/share/classes/com/sun/tools/javac/util/
H A DList.java94 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/classes/java/nio/file/
H A DFileTreeWalker.java112 } catch (IOException x2) {
113 exc = x2;
/openjdk7/jdk/src/share/classes/java/awt/
H A DRectangle.java940 long x2 = this.width;
942 x2 += x1;
946 if (x2 < newx) x2 = newx;
948 x2 -= x1;
950 if (x2 > Integer.MAX_VALUE) x2 = Integer.MAX_VALUE;
952 reshape(x1, y1, (int) x2, (int) y2);
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaToolBarUI.java59 protected void fillHandle(final Graphics g, final int x1, final int y1, final int x2, final int y2, final boolean horizontal) { argument
66 final int w = x2 - x1 - 2;
/openjdk7/jdk/src/solaris/native/sun/java2d/loops/
H A Dvis_DrawLine.c87 if (bumpmajormask & 0x2) bumpmajor = -ANYTYPE##PixelStride; else \
92 if (bumpminormask & 0x2) bumpminor = -ANYTYPE##PixelStride; else \
/openjdk7/jdk/test/java/util/Map/
H A DLockStep.java68 Object x2 = fit.next();
74 if (x == x1 || x == x2)
/openjdk7/jdk/test/sun/java2d/SunGraphics2D/
H A DDrawImageBilinear.java141 int x2 = x1 + affectedRegion.width;
145 for (int x = x1; x < x2; x++) {
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DPixelToShapeConverter.java51 int x1, int y1, int x2, int y2) {
52 outpipe.draw(sg, new Line2D.Float(x1, y1, x2, y2));
50 drawLine(SunGraphics2D sg, int x1, int y1, int x2, int y2) argument

Completed in 233 milliseconds

1234567891011>>