Searched refs:x0 (Results 1 - 25 of 162) sorted by relevance

1234567

/openjdk7/jdk/src/share/back/
H A DFieldImpl.c28 void *Field_Cmds[] = { (void *)0x0 };
/openjdk7/jdk/test/java/util/EnumSet/
H A DBogusEnumSet.java36 (byte)0xac, (byte)0xed, 0x0, 0x5, 0x73, 0x72, 0x0, 0x18,
40 0x7e, (byte)0xb0, (byte)0xd0, 0x7e, 0x2, 0x0, 0x1, 0x4a, 0x0, 0x8,
41 0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x78, 0x72, 0x0,
45 0x0, 0x2, 0x4c, 0x0, 0xb, 0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74,
46 0x54, 0x79, 0x70, 0x65, 0x74, 0x0, 0x11, 0x4c, 0x6a, 0x61, 0x76,
48 0x73, 0x3b, 0x5b, 0x0, 0x8, 0x75, 0x6e, 0x69, 0x76, 0x65, 0x72,
49 0x73, 0x65, 0x74, 0x0,
[all...]
/openjdk7/jdk/test/sun/nio/cs/
H A DTest6392804.java34 new byte[] {0x1b,(byte)0x8e, 0x24, 0x40, 0x0, 0x0});
36 new byte[] {0x1b,(byte)0x8e, 0x24, 0x40, 0x0, 0x0});
38 new byte[] {0x1b,(byte)0x8e, 0x24, 0x40, 0x0, 0x0});
40 new byte[] {0x1b,(byte)0x8e, 0x24, 0x40, 0x0, 0x0});
42 new byte[] {0x1b,(byte)0x8e, 0x24, 0x40, 0x0, 0x0});
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/geom/
H A DOrder1.java33 private double x0; field in class:Order1
40 public Order1(double x0, double y0, argument
45 this.x0 = x0;
49 if (x0 < x1) {
50 this.xmin = x0;
54 this.xmax = x0;
63 return x0;
87 return (direction == INCREASING) ? x0 : x1;
95 return (direction == DECREASING) ? x0
[all...]
H A DOrder2.java34 private double x0; field in class:Order2
51 double x0, double y0,
60 addInstance(curves, x0, y0, cx0, cy0, x1, y1, direction);
65 tmp[0] = x0; tmp[1] = y0;
78 double x0, double y0,
83 curves.add(new Order2(x1, y1, cx0, cy0, x0, y0, -direction));
85 curves.add(new Order2(x0, y0, cx0, cy0, x1, y1, direction));
139 double x0, y0, cx, cy, x1, y1;
146 x0 = coords[pos+0];
148 x0
50 insert(Vector curves, double tmp[], double x0, double y0, double cx0, double cy0, double x1, double y1, int direction) argument
77 addInstance(Vector curves, double x0, double y0, double cx0, double cy0, double x1, double y1, int direction) argument
160 Order2(double x0, double y0, double cx0, double cy0, double x1, double y1, int direction) argument
[all...]
H A DOrder3.java34 private double x0; field in class:Order3
57 double x0, double y0,
67 addInstance(curves, x0, y0, cx0, cy0, cx1, cy1, x1, y1, direction);
71 tmp[3] = x0; tmp[4] = y0;
109 double x0, double y0,
115 curves.add(new Order3(x1, y1, cx1, cy1, cx0, cy0, x0, y0,
118 curves.add(new Order3(x0, y0, cx0, cy0, cx1, cy1, x1, y1,
195 double x0, y0, cx0, cy0, cx1, cy1, x1, y1;
202 x0 = coords[pos+0];
206 x0
56 insert(Vector curves, double tmp[], double x0, double y0, double cx0, double cy0, double cx1, double cy1, double x1, double y1, int direction) argument
108 addInstance(Vector curves, double x0, double y0, double cx0, double cy0, double cx1, double cy1, double x1, double y1, int direction) argument
226 Order3(double x0, double y0, double cx0, double cy0, double cx1, double cy1, double x1, double y1, int direction) argument
[all...]
H A DCrossings.java190 public boolean accumulateLine(double x0, double y0, argument
194 return accumulateLine(x0, y0, x1, y1, 1);
196 return accumulateLine(x1, y1, x0, y0, -1);
200 public boolean accumulateLine(double x0, double y0, argument
207 if (x0 >= xhi && x1 >= xhi) {
211 return (x0 >= xlo || x1 >= xlo);
214 double dx = (x1 - x0);
217 xstart = x0 + (ylo - y0) * dx / dy;
220 xstart = x0;
224 xend = x0
242 accumulateQuad(double x0, double y0, double coords[]) argument
272 accumulateCubic(double x0, double y0, double coords[]) argument
[all...]
H A DCurve.java46 double x0, double y0,
50 curves.add(new Order1(x0, y0,
55 x0, y0,
63 double x0, double y0,
71 x0, y0,
78 x0, y0,
86 double x0, double y0,
95 x0, y0,
102 x0, y0,
204 * Calculates the number of times the line from (x0,y
45 insertLine(Vector curves, double x0, double y0, double x1, double y1) argument
62 insertQuad(Vector curves, double x0, double y0, double coords[]) argument
85 insertCubic(Vector curves, double x0, double y0, double coords[]) argument
210 pointCrossingsForLine(double px, double py, double x0, double y0, double x1, double y1) argument
234 pointCrossingsForQuad(double px, double py, double x0, double y0, double xc, double yc, double x1, double y1, int level) argument
285 pointCrossingsForCubic(double px, double py, double x0, double y0, double xc0, double yc0, double xc1, double yc1, double x1, double y1, int level) argument
481 rectCrossingsForLine(int crossings, double rxmin, double rymin, double rxmax, double rymax, double x0, double y0, double x1, double y1) argument
555 rectCrossingsForQuad(int crossings, double rxmin, double rymin, double rxmax, double rymax, double x0, double y0, double xc, double yc, double x1, double y1, int level) argument
631 rectCrossingsForCubic(int crossings, double rxmin, double rymin, double rxmax, double rymax, double x0, double y0, double xc0, double yc0, double xc1, double yc1, double x1, double y1, int level) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/dnd/
H A DDnDConstants.java41 public static final int ACTION_NONE = 0x0;
/openjdk7/jdk/src/share/classes/sun/java2d/pisces/
H A DPiscesCache.java40 // The format of each of the inner arrays is: rowAARLE[i][0,1] = (x0, n)
41 // where x0 is the first x in row i with nonzero alpha, and n is the
49 // the row terminated). x0,y0 is this (x,y)-(bboxX0,bboxY0). They
51 private int x0 = Integer.MIN_VALUE, y0 = Integer.MIN_VALUE; field in class:PiscesCache
72 x0 = 0;
86 int tx = x0 >> TILE_SIZE_LG;
88 int tx1 = (x0 + runLen - 1) >> TILE_SIZE_LG;
98 if (nextTileXCoord > x0+runLen) {
101 touchedTile[ty][tx] += val * (nextTileXCoord - x0);
111 // System.out.println("x0, y
[all...]
H A DRenderer.java170 private void quadBreakIntoLinesAndAdd(float x0, float y0, argument
191 float x1 = x0 + dx;
195 addLine(x0, y0, x1, y1);
196 x0 = x1;
199 addLine(x0, y0, x2, y2);
202 // x0, y0 and x3,y3 are the endpoints of the curve. We could compute these
207 private void curveBreakIntoLinesAndAdd(float x0, float y0, argument
225 // we use x0, y0 to walk the line
226 float x1 = x0, y1 = y0;
259 addLine(x0, y
332 private float x0, y0; field in class:Renderer
[all...]
H A DPiscesTileGenerator.java156 int x0 = this.x;
157 int x1 = x0 + TILE_SIZE;
172 for (int i = x0; i < cx; i++) {
187 System.out.println("tile["+x0+", "+y0+
200 if (rx0 < x0) rx0 = x0;
209 System.out.println("tile["+x0+", "+y0+
222 if (cx < x0) { cx = x0; }
228 for (int i = idx - (x1-x0);
[all...]
/openjdk7/langtools/test/tools/javac/literals/
H A DBadUnderscoreLiterals.java43 float xf3 = 0x0._1p0; // leading underscore after decimal point
44 float xf4 = 0x0.1_p0; // trailing underscore before exponent
/openjdk7/langtools/test/tools/javac/
H A DHexThree.java895 +0x0.30P+4,
896 +0x0.30P+4D,
897 +0x0.30P+4F,
898 +0x0.30P+4d,
899 +0x0.30P+4f,
900 +0x0.30P4,
901 +0x0.30P4D,
902 +0x0.30P4F,
903 +0x0.30P4d,
904 +0x0
[all...]
/openjdk7/jdk/test/sun/java2d/cmm/ColorConvertOp/
H A DImageComparator.java116 boolean compare(BufferedImage dst, BufferedImage gldImage, int x0, int y0, argument
122 if (x0 < 0) x0 = 0;
123 if (x0 > width - dx) x0 = width - dx;
130 for (int i = x0; i < x0 + dx; i++) {
132 boolean cmp = compare(dst.getRGB(i-x0,j-y0),
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/win32/coff/
H A DMachineTypes.java34 public static final short IMAGE_FILE_MACHINE_UNKNOWN = (short) 0x0;
H A DDebugVC50TypeEnums.java290 public static final int RESERVED_SIZE_SPECIAL_NO_TYPE = 0x0;
299 public static final int RESERVED_SIZE_INT_1_BYTE = 0x0;
304 public static final int RESERVED_SIZE_REAL_32_BIT = 0x0;
310 public static final int RESERVED_SIZE_SPECIAL2_BIT = 0x0;
313 public static final int RESERVED_SIZE_REALLY_INT_CHAR = 0x0;
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DParallelogramUtils.h64 #define SORT_PGRAM(x0, y0, dx1, dy1, dx2, dy2, OTHER_SWAP_CODE) \
67 x0 += dx1; y0 += dy1; \
71 x0 += dx2; y0 += dy2; \
H A DProcessPath.h56 jint x0, jint y0, jint x1, jint y1);
58 void (*pDrawPixel)(struct _DrawHandler* hnd, jint x0, jint y0);
60 void (*pDrawScanline)(struct _DrawHandler* hnd, jint x0, jint x1, jint y0);
/openjdk7/jdk/test/javax/swing/plaf/basic/BasicHTML/4251579/
H A Dbug4251579.java64 int x0 = p.x;
67 for (int x = x0; x < x0 + d.width; x++) {
/openjdk7/jdk/test/javax/swing/text/html/CSS/4530474/
H A Dbug4530474.java69 int x0 = p.x;
76 for (int x = x0; x < x0 + d.width; x++) {
/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DFillParallelogram.java78 double x0, double y0,
110 double x0, double y0,
115 target.FillParallelogram(sg2d, dest, x0, y0, dx1, dy1, dx2, dy2);
77 FillParallelogram(SunGraphics2D sg2d, SurfaceData dest, double x0, double y0, double dx1, double dy1, double dx2, double dy2) argument
109 FillParallelogram(SunGraphics2D sg2d, SurfaceData dest, double x0, double y0, double dx1, double dy1, double dx2, double dy2) argument
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/expr/
H A DExpressionParser.java3619 final private int[] jj_la1_0 = { 0x8209400, 0x0, 0x8209400, 0x0, 0x1000000,
3620 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
[all...]
/openjdk7/jdk/src/solaris/native/sun/nio/fs/
H A DgenUnixConstants.c76 emitX("O_NOFOLLOW", 0x0);
133 emitX("AT_SYMLINK_NOFOLLOW", 0x0);
134 emitX("AT_REMOVEDIR", 0x0);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/scd/
H A DSCDParser.java417 jj_la1_1 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
[all...]

Completed in 94 milliseconds

1234567