Searched refs:srcoff (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/java2d/pisces/
H A DHelpers.java211 static void subdivide(float[] src, int srcoff, float[] left, int leftoff, argument
216 Helpers.subdivideQuad(src, srcoff, left, leftoff, right, rightoff);
219 Helpers.subdivideCubic(src, srcoff, left, leftoff, right, rightoff);
242 * stored in the <code>src</code> array at indices <code>srcoff</code>
243 * through (<code>srcoff</code>&nbsp;+&nbsp;7) and stores the
256 * @param srcoff the offset into the array of the beginning of the
268 static void subdivideCubic(float src[], int srcoff, argument
272 float x1 = src[srcoff + 0];
273 float y1 = src[srcoff + 1];
274 float ctrlx1 = src[srcoff
319 subdivideCubicAt(float t, float src[], int srcoff, float left[], int leftoff, float right[], int rightoff) argument
369 subdivideQuad(float src[], int srcoff, float left[], int leftoff, float right[], int rightoff) argument
407 subdivideQuadAt(float t, float src[], int srcoff, float left[], int leftoff, float right[], int rightoff) argument
445 subdivideAt(float t, float src[], int srcoff, float left[], int leftoff, float right[], int rightoff, int size) argument
[all...]
/openjdk7/hotspot/test/compiler/7047069/
H A DTest7047069.java73 public static void subdivide(float src[], int srcoff, argument
77 float x1 = src[srcoff + 0];
78 float y1 = src[srcoff + 1];
79 float ctrlx = src[srcoff + 2];
80 float ctrly = src[srcoff + 3];
81 float x2 = src[srcoff + 4];
82 float y2 = src[srcoff + 5];
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DReplicateScaleFilter.java203 int srcoff = off + scansize * (sy - y);
206 outpix[dx] = pixels[srcoff + sx - x];
244 int srcoff = off + scansize * (sy - y);
247 outpix[dx] = pixels[srcoff + sx - x];
/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DQuadCurve2D.java775 * <code>srcoff</code> through <code>srcoff</code>&nbsp;+&nbsp;5
788 * @param srcoff the offset into the array of the beginning of the
800 public static void subdivide(double src[], int srcoff, argument
803 double x1 = src[srcoff + 0];
804 double y1 = src[srcoff + 1];
805 double ctrlx = src[srcoff + 2];
806 double ctrly = src[srcoff + 3];
807 double x2 = src[srcoff + 4];
808 double y2 = src[srcoff
[all...]
H A DCubicCurve2D.java977 * stored in the <code>src</code> array at indices <code>srcoff</code>
978 * through (<code>srcoff</code>&nbsp;+&nbsp;7) and stores the
991 * @param srcoff the offset into the array of the beginning of the
1003 public static void subdivide(double src[], int srcoff, argument
1006 double x1 = src[srcoff + 0];
1007 double y1 = src[srcoff + 1];
1008 double ctrlx1 = src[srcoff + 2];
1009 double ctrly1 = src[srcoff + 3];
1010 double ctrlx2 = src[srcoff + 4];
1011 double ctrly2 = src[srcoff
[all...]

Completed in 270 milliseconds