Searched refs:dstIndex (Results 1 - 10 of 10) sorted by relevance

/openjdk9/jdk/src/java.desktop/share/classes/com/sun/imageio/plugins/tiff/
H A DTIFFPackBitsUtil.java32 int dstIndex = 0; field in class:TIFFPackBitsUtil
38 if (dstIndex + bytesToAdd > dstData.length) {
40 dstIndex + bytesToAdd)];
56 dstData[dstIndex++] = srcData[inIndex++];
63 dstData[dstIndex++] = repeat;
71 byte[] newDstData = new byte[dstIndex];
72 System.arraycopy(dstData, 0, newDstData, 0, dstIndex);
H A DTIFFPackBitsDecompressor.java39 int dstIndex = dstOffset;
44 while (dstIndex < dstArraySize && srcIndex < srcArraySize) {
51 dstData[dstIndex++] = srcData[srcIndex++];
57 dstData[dstIndex++] = repeat;
71 return dstIndex - dstOffset;
H A DTIFFLZWUtil.java38 int dstIndex = 0; field in class:TIFFLZWUtil
65 this.dstIndex = 0;
114 byte[] newDstData = new byte[dstIndex];
115 System.arraycopy(dstData, 0, newDstData, 0, dstIndex);
135 if (dstIndex + bytesToAdd > dstData.length) {
137 dstIndex + bytesToAdd)];
149 dstData[dstIndex++] = string[i];
H A DTIFFLZWDecompressor.java54 private int dstIndex; field in class:TIFFLZWDecompressor
143 this.dstIndex = dstOffset;
197 return dstIndex - dstOffset;
219 if(dstIndex < dstData.length) {
221 dstData.length - dstIndex);
224 dstData[dstIndex++] = string[i];
/openjdk9/jdk/src/java.base/share/classes/sun/util/calendar/
H A DZoneInfo.java317 int dstIndex = (int)((val >>> DST_NSHIFT) & 0xfL);
318 if (dstIndex != 0) {
319 midVal -= offsets[dstIndex]; // make it standard time
H A DZoneInfoFile.java856 int dstIndex = 0;
858 dstIndex = indexOf(offsets, 1, nOffsets, offset - stdOffset);
859 if (dstIndex == nOffsets)
863 ((dstIndex << DST_NSHIFT) & DST_MASK) |
/openjdk9/jdk/test/jdk/internal/misc/Unsafe/
H A DCopyCommon.java452 for (int dstIndex = 0; dstIndex < buffers.length; dstIndex++) {
453 testBufferPair(buffers[srcIndex], buffers[dstIndex], size, elemSize, swap);
/openjdk9/jdk/test/sun/util/calendar/zi/
H A DZoneInfoOld.java345 int dstIndex = (int)((val >>> DST_NSHIFT) & 0xfL);
346 if (dstIndex != 0) {
347 midVal -= offsets[dstIndex]; // make it standard time
/openjdk9/jdk/src/java.desktop/windows/native/libjsound/
H A DPLATFORM_API_WinOS_Ports.c256 int getMixerLineByDestination(HMIXER handle, DWORD dstIndex, MIXERLINE* mixerLine) { argument
258 mixerLine->dwDestination = dstIndex;
282 int getMixerLineBySource(HMIXER handle, DWORD dstIndex, DWORD srcIndex, MIXERLINE* mixerLine) { argument
284 mixerLine->dwDestination = dstIndex;
/openjdk9/jdk/src/java.base/share/classes/java/lang/
H A DCharacter.java8035 * stored in {@code dst[dstIndex]}, and 1 is returned. If the
8037 * surrogate values are stored in {@code dst[dstIndex]}
8038 * (high-surrogate) and {@code dst[dstIndex+1]}
8044 * @param dstIndex the start index into the {@code dst}
8051 * @exception IndexOutOfBoundsException if {@code dstIndex}
8053 * {@code dst} at {@code dstIndex} doesn't have enough
8055 * value(s). (If {@code dstIndex} is equal to
8059 * {@code dst[dstIndex]}.)
8062 public static int toChars(int codePoint, char[] dst, int dstIndex) { argument
8064 dst[dstIndex]
[all...]

Completed in 485 milliseconds