Searched refs:arraycopy (Results 126 - 150 of 890) sorted by relevance

1234567891011>>

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/reflect/
H A DPrimitiveArrayListerDouble.java84 System.arraycopy(buf,0,nb,0,buf.length);
97 System.arraycopy(buf,0,r,0,size);
H A DPrimitiveArrayListerFloat.java84 System.arraycopy(buf,0,nb,0,buf.length);
97 System.arraycopy(buf,0,r,0,size);
H A DPrimitiveArrayListerInteger.java84 System.arraycopy(buf,0,nb,0,buf.length);
97 System.arraycopy(buf,0,r,0,size);
H A DPrimitiveArrayListerLong.java84 System.arraycopy(buf,0,nb,0,buf.length);
97 System.arraycopy(buf,0,r,0,size);
H A DPrimitiveArrayListerShort.java84 System.arraycopy(buf,0,nb,0,buf.length);
97 System.arraycopy(buf,0,r,0,size);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/algorithm/
H A DHexadecimalEncodingAlgorithm.java69 System.arraycopy(b, start, data, 0, length);
137 System.arraycopy((byte[])array, astart, b, start, alength);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/util/
H A DQualifiedNameArray.java85 System.arraycopy(ra, 0, a, 0, _readOnlyArraySize);
113 System.arraycopy(_array, 0, newArray, 0, _size);
H A DStringArray.java89 System.arraycopy(ra, 0, a, 0, _readOnlyArraySize);
118 System.arraycopy(_array, 0, newArray, 0, _size);
/openjdk7/jdk/src/share/classes/sun/rmi/transport/tcp/
H A DMultiplexOutputStream.java117 System.arraycopy(b, off, buffer, pos, len);
216 System.arraycopy(buffer, local_requested,
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DSuballocatedByteVector.java137 System.arraycopy(m_map, 0, newMap, 0, m_map.length);
170 System.arraycopy(m_map, 0, newMap, 0, m_map.length);
228 System.arraycopy(m_map, 0, newMap, 0, m_map.length);
259 System.arraycopy(block, offset , block, offset+1, copylen);
321 System.arraycopy(block, offset+1, block, offset, copylen);
362 System.arraycopy(m_map, 0, newMap, 0, m_map.length);
H A DSuballocatedIntVector.java170 System.arraycopy(m_map, 0, newMap, 0, m_map.length);
210 System.arraycopy(m_map, 0, newMap, 0, m_map.length);
268 System.arraycopy(m_map, 0, newMap, 0, m_map.length);
299 System.arraycopy(block, offset , block, offset+1, copylen);
363 System.arraycopy(block, offset+1, block, offset, copylen);
402 System.arraycopy(m_map, 0, newMap, 0, m_map.length);
/openjdk7/jdk/src/share/classes/javax/smartcardio/
H A DCommandAPDU.java123 System.arraycopy(apdu, apduOffset, this.apdu, 0, apduLength);
435 System.arraycopy(data, dataOffset, apdu, 5, dataLength);
444 System.arraycopy(data, dataOffset, apdu, 7, dataLength);
454 System.arraycopy(data, dataOffset, apdu, 5, dataLength);
464 System.arraycopy(data, dataOffset, apdu, 7, dataLength);
539 System.arraycopy(apdu, dataOffset, data, 0, nc);
/openjdk7/jdk/src/share/classes/sun/net/www/http/
H A DChunkedInputStream.java191 System.arraycopy(rawData, rawPos, tmp, 0, used);
196 System.arraycopy(rawData, rawPos, rawData, 0, used);
364 System.arraycopy(chunkData, chunkPos, tmp, 0, cnt);
367 System.arraycopy(chunkData, chunkPos, chunkData, 0, cnt);
377 System.arraycopy(rawData, rawPos, chunkData, chunkCount, copyLen);
702 System.arraycopy(chunkData, chunkPos, b, off, cnt);
/openjdk7/jdk/src/share/classes/java/util/
H A DComparableTimSort.java247 // Switch is just an optimization for arraycopy in default case
252 default: System.arraycopy(a, left, a, left + 1, n);
624 System.arraycopy(a, base1, tmp, 0, len1);
633 System.arraycopy(tmp, cursor1, a, dest, len1);
637 System.arraycopy(a, cursor2, a, dest, len2);
678 System.arraycopy(tmp, cursor1, a, dest, count1);
691 System.arraycopy(a, cursor2, a, dest, count2);
711 System.arraycopy(a, cursor2, a, dest, len2);
719 System.arraycopy(tmp, cursor1, a, dest, len1);
741 System.arraycopy(
[all...]
H A DTimSort.java280 // Switch is just an optimization for arraycopy in default case
285 default: System.arraycopy(a, left, a, left + 1, n);
656 System.arraycopy(a, base1, tmp, 0, len1);
665 System.arraycopy(tmp, cursor1, a, dest, len1);
669 System.arraycopy(a, cursor2, a, dest, len2);
711 System.arraycopy(tmp, cursor1, a, dest, count1);
724 System.arraycopy(a, cursor2, a, dest, count2);
744 System.arraycopy(a, cursor2, a, dest, len2);
752 System.arraycopy(tmp, cursor1, a, dest, len1);
773 System.arraycopy(
[all...]
H A DVector.java188 System.arraycopy(elementData, 0, anArray, 0, elementCount);
562 System.arraycopy(elementData, index + 1, elementData, index, j);
598 System.arraycopy(elementData, index, elementData, index + 1, elementCount - index);
718 System.arraycopy(elementData, 0, a, 0, elementCount);
832 System.arraycopy(elementData, index+1, elementData, index,
883 System.arraycopy(a, 0, elementData, elementCount, numNew);
960 System.arraycopy(elementData, index, elementData, index + numNew,
963 System.arraycopy(a, 0, elementData, index, numNew);
1048 System.arraycopy(elementData, toIndex, elementData, fromIndex,
/openjdk7/jdk/src/share/classes/sun/security/jgss/krb5/
H A DInitialToken.java133 System.arraycopy(localBindingsBytes, 0,
200 System.arraycopy(krbCredMessage, 0,
248 System.arraycopy(checksumBytes, 4, remoteBindingBytes, 0,
278 System.arraycopy(checksumBytes, 28, credBytes, 0, credLen);
415 System.arraycopy(initiatorAddressBytes, 0,
429 System.arraycopy(acceptorAddressBytes, 0,
440 System.arraycopy(appDataBytes, 0, data, pos,
/openjdk7/jdk/test/java/util/zip/
H A DFlaterCriticalArray.java59 System.arraycopy(a, 0, a2, 0, a.length);
67 System.arraycopy(a, 0, res, 0, length);
140 System.arraycopy(smallBuffer, 0, flated, count, n);
149 System.arraycopy(smallBuffer, 0, flated, count, n);
169 System.arraycopy(smallBuffer, 0, flated, count, n);
193 System.arraycopy(smallBuffer, 0, flated, count, n);
208 System.arraycopy(smallBuffer, 0, flated, count, n);
/openjdk7/jdk/src/share/classes/java/lang/
H A DAbstractStringBuilder.java356 System.arraycopy(value, srcBegin, dst, dstBegin, srcEnd - srcBegin);
506 System.arraycopy(str, 0, value, count, len);
534 if (len > 0) // let arraycopy report AIOOBE for len < 0
536 System.arraycopy(str, offset, value, count, len);
701 System.arraycopy(value, start+len, value, start, count-end);
763 System.arraycopy(value, index+1, value, index, count-index-1);
801 System.arraycopy(value, end, value, start + len, count - end);
907 System.arraycopy(value, index, value, index + len, count - index);
908 System.arraycopy(str, offset, value, index, len);
974 System.arraycopy(valu
[all...]
/openjdk7/jdk/src/share/classes/java/util/jar/
H A DManifest.java230 System.arraycopy(lbuf, 6, lastline, 0, len - 6);
236 System.arraycopy(lastline, 0, buf, 0, lastline.length);
237 System.arraycopy(lbuf, 1, buf, lastline.length, len - 1);
360 System.arraycopy(buf, pos, b, off, len);
389 System.arraycopy(tbuf, pos, b, off, n);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/sax/
H A DAttributesHolder.java253 System.arraycopy(_names, 0, names, 0, _attributeCount);
254 System.arraycopy(_values, 0, values, 0, _attributeCount);
256 System.arraycopy(_algorithmURIs, 0, algorithmURIs, 0, _attributeCount);
257 System.arraycopy(_algorithmIds, 0, algorithmIds, 0, _attributeCount);
258 System.arraycopy(_algorithmData, 0, algorithmData, 0, _attributeCount);
/openjdk7/jdk/src/share/classes/sun/security/ec/
H A DECParameters.java96 System.arraycopy(data, 1, xb, 0, n);
97 System.arraycopy(data, n + 1, yb, 0, n);
113 System.arraycopy(xb, 0, b, n - xb.length + 1, xb.length);
114 System.arraycopy(yb, 0, b, b.length - yb.length, yb.length);
129 System.arraycopy(b, i, t, 0, t.length);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/
H A DXML11EntityScanner.java200 System.arraycopy(fCurrentEntity.ch, offset,
205 System.arraycopy(fCurrentEntity.ch, offset,
220 System.arraycopy(fCurrentEntity.ch, offset,
225 System.arraycopy(fCurrentEntity.ch, offset,
246 System.arraycopy(fCurrentEntity.ch, offset,
251 System.arraycopy(fCurrentEntity.ch, offset,
354 System.arraycopy(fCurrentEntity.ch, offset,
359 System.arraycopy(fCurrentEntity.ch, offset,
374 System.arraycopy(fCurrentEntity.ch, offset,
379 System.arraycopy(fCurrentEntit
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/event/
H A DEventListenerList.java196 System.arraycopy(listenerList, 0, tmp, 0, i);
234 System.arraycopy(listenerList, 0, tmp, 0, index);
239 System.arraycopy(listenerList, index+2, tmp, index,
/openjdk7/jdk/src/share/classes/sun/instrument/
H A DTransformerManager.java97 System.arraycopy( oldList,
130 System.arraycopy( oldList,
139 System.arraycopy( oldList,

Completed in 138 milliseconds

1234567891011>>