Searched refs:tempArray (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/java/security/
H A DMessageDigestSpi.java54 private byte[] tempArray; field in class:MessageDigestSpi
119 if ((tempArray == null) || (n > tempArray.length)) {
120 tempArray = new byte[n];
123 int chunk = Math.min(len, tempArray.length);
124 input.get(tempArray, 0, chunk);
125 engineUpdate(tempArray, 0, chunk);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/table/
H A DTableModelComparator.java55 int[] tempArray = new int[model.getColumnCount()];
56 System.arraycopy(columns, 1, tempArray, 0, columns.length - 1);
58 columns = tempArray;
/openjdk7/jdk/src/share/classes/sun/text/
H A DUCompactIntArray.java138 int[] tempArray;
144 tempArray = new int[UNICODECOUNT];
146 tempArray[i] = values[plane][indices[plane][i >> BLOCKSHIFT]
153 values[plane] = tempArray;
H A DCompactByteArray.java320 byte[] tempArray;
322 tempArray = new byte[UNICODECOUNT];
325 tempArray[i] = value;
332 values = tempArray;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/traversers/
H A DXSDSimpleTypeTraverser.java257 XSAnnotationImpl [] tempArray = new XSAnnotationImpl[2];
258 tempArray[0] = annotations[0];
259 annotations = tempArray;
273 XSAnnotationImpl [] tempArray = new XSAnnotationImpl[2];
274 tempArray[0] = annotations[0];
275 annotations = tempArray;
H A DXSDComplexTypeTraverser.java1253 XSAnnotationImpl [] tempArray = new XSAnnotationImpl[fAnnotations.length + 1];
1254 System.arraycopy(fAnnotations, 0, tempArray, 0, fAnnotations.length);
1255 fAnnotations = tempArray;
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DRealTimeSequencer.java1666 byte[][] tempArray = null;
1687 if (tempArray == null) {
1688 tempArray = new byte[128][16];
1690 chaseTrackEvents(i, 0, lastTick, true, tempArray);
1701 * @param tempArray an byte[128][16] to hold controller messages
1707 byte[][] tempArray) {
1717 tempArray[co][ch] = -1;
1738 tempArray[smsg.getData1() & 0x7F][status & 0x0F] = (byte) smsg.getData2();
1741 tempArray[data[1] & 0x7F][status & 0x0F] = data[2];
1762 byte controllerValue = tempArray[c
1703 chaseTrackEvents(int trackNum, long startTick, long endTick, boolean doReindex, byte[][] tempArray) argument
[all...]

Completed in 41 milliseconds