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

/openjdk9/jdk/src/java.desktop/share/classes/com/sun/imageio/plugins/common/
H A DReaderUtil.java148 * @param dstMinX the smallest X coordinate (inclusive) of the
177 int dstMinX,
193 dstMinX, dstMaxX, sourceXSubsampling,
175 computeUpdatedPixels(Rectangle sourceRegion, Point destinationOffset, int dstMinX, int dstMinY, int dstMaxX, int dstMaxY, int sourceXSubsampling, int sourceYSubsampling, int passXStart, int passYStart, int passWidth, int passHeight, int passPeriodX, int passPeriodY) argument
/openjdk9/jdk/src/java.desktop/share/classes/com/sun/imageio/plugins/tiff/
H A DTIFFImageReader.java124 private int dstMinX; field in class:TIFFImageReader
1046 dstMinX = iceil(srcMinX - sourceXOffset, srcXSubsampling);
1054 dstWidth = dstMaxX - dstMinX + 1;
1057 dstMinX += dstXOffset;
1061 Rectangle dstRect = new Rectangle(dstMinX, dstMinY,
1066 dstMinX = dstRect.x;
1077 int activeSrcMinX = (dstMinX - dstXOffset) * srcXSubsampling
1080 = (dstMinX + dstWidth - 1 - dstXOffset) * srcXSubsampling
1096 decompressor.setDstMinX(dstMinX);
1133 dstMinX, dstMin
[all...]
H A DTIFFDecompressor.java329 protected int dstMinX; field in class:TIFFDecompressor
355 * destination pixel at ({@code dstMinX},
1651 * Sets the value of the {@code dstMinX} field.
1657 * @param dstMinX the minimum X coordinate of the destination
1660 public void setDstMinX(int dstMinX) { argument
1661 this.dstMinX = dstMinX;
2279 ((dstMinX + dstWidth) <= image.getWidth()) &&
2337 * by the instance variables {@code dstMinX},
2352 * map to the destination pixel ({@code dstMinX},
[all...]
H A DTIFFYCbCrDecompressor.java290 public void setDstMinX(int dstMinX) { argument
292 decompressor.setDstMinX(dstMinX);
294 super.setDstMinX(dstMinX);
/openjdk9/jdk/src/java.desktop/share/classes/com/sun/imageio/plugins/png/
H A DPNGImageReader.java966 int dstMinX = imRas.getMinX();
967 int dstMaxX = dstMinX + imRas.getWidth() - 1;
975 dstMinX, dstMinY,

Completed in 158 milliseconds