HomeSort by relevance Sort by last modified time
    Searched full:arraycopy (Results 326 - 350 of 1189) sorted by null

<<11121314151617181920>>

  /external/protobuf/java/src/main/java/com/google/protobuf/
ByteString.java 91 System.arraycopy(bytes, offset, copy, 0, size);
163 System.arraycopy(str.bytes, 0, bytes, pos, str.size());
179 System.arraycopy(bytes, 0, target, offset, bytes.length);
193 System.arraycopy(bytes, sourceOffset, target, targetOffset, size);
202 System.arraycopy(bytes, 0, copy, 0, size);
  /libcore/luni/src/main/java/javax/crypto/
EncryptedPrivateKeyInfo.java 86 System.arraycopy(encoded, 0, this.encoded, 0, encoded.length);
152 System.arraycopy(encryptedData, 0,
185 System.arraycopy(encryptedData, 0,
219 System.arraycopy(encryptedData, 0, ret, 0, encryptedData.length);
440 System.arraycopy(encoded, 0, ret, 0, encoded.length);
  /external/apache-xml/src/main/java/org/apache/xpath/
NodeSet.java 854 System.arraycopy(this.m_map, 0, clone.m_map, 0, this.m_map.length);
893 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
927 System.arraycopy(m_map, 0, newMap, 0, ff + 1);
1021 System.arraycopy(m_map, 0, newMap, 0, m_firstFree);
1118 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
1125 System.arraycopy(m_map, at, m_map, at + 1, m_firstFree - at);
1154 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + nNodes);
1159 System.arraycopy(nodes.m_map, 0, m_map, m_firstFree, nNodes);
1210 System.arraycopy(m_map, i + 1, m_map, i, m_firstFree - i - 1);
    [all...]
  /libcore/luni/src/main/java/java/security/cert/
X509CertSelector.java 209 System.arraycopy(issuerDN, 0, this.issuerBytes, 0, issuerDN.length);
231 System.arraycopy(issuerBytes, 0, result, 0, issuerBytes.length);
345 System.arraycopy(subjectKeyIdentifier, 0, this.subjectKeyIdentifier, 0,
360 System.arraycopy(subjectKeyIdentifier, 0, res, 0, res.length);
377 System.arraycopy(authorityKeyIdentifier, 0,
394 System.arraycopy(authorityKeyIdentifier, 0, res, 0, res.length);
533 System.arraycopy(key, 0, subjectPublicKey, 0, key.length);
563 System.arraycopy(keyUsage, 0, this.keyUsage, 0, keyUsage.length);
578 System.arraycopy(keyUsage, 0, result, 0, keyUsage.length);
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/provider/cert/
X509CertFactoryPerfTest.java 337 System.arraycopy(signatureValueBytes, 0,
364 System.arraycopy(tmp, 0, stamp, 0, tmp.length);
365 System.arraycopy(stamp, 0, certEncoding,
374 System.arraycopy(enc, enc.length - stamp.length,
388 System.arraycopy(tmp, 0, stamp, 0, tmp.length);
389 System.arraycopy(stamp, 0, certEncoding,
398 System.arraycopy(enc, enc.length - stamp.length,
  /external/smack/src/org/xbill/DNS/
Name.java 132 System.arraycopy(src.name, offset0, dst.name, 0, namelen);
160 System.arraycopy(name, offset(0), newname, 0, length);
161 System.arraycopy(array, start, newname, length, alength);
451 System.arraycopy(name, offset(0), newname.name, 0, length);
502 System.arraycopy(name, pstart, newname.name, 0, plength);
503 System.arraycopy(dnametarget.name, 0, newname.name, plength, dlength);
623 System.arraycopy(name, pos, label, 0, len);
  /frameworks/base/core/java/android/net/
NetworkStatsHistory.java 418 System.arraycopy(bucketStart, index, bucketStart, dstPos, length);
419 if (activeTime != null) System.arraycopy(activeTime, index, activeTime, dstPos, length);
420 if (rxBytes != null) System.arraycopy(rxBytes, index, rxBytes, dstPos, length);
421 if (rxPackets != null) System.arraycopy(rxPackets, index, rxPackets, dstPos, length);
422 if (txBytes != null) System.arraycopy(txBytes, index, txBytes, dstPos, length);
423 if (txPackets != null) System.arraycopy(txPackets, index, txPackets, dstPos, length);
424 if (operations != null) System.arraycopy(operations, index, operations, dstPos, length);
  /frameworks/base/obex/javax/obex/
ObexHelper.java 197 System.arraycopy(headerArray, index, value, 0, length);
219 System.arraycopy(headerArray, index, headerImpl.mAuthChall, 0,
225 System.arraycopy(headerArray, index, headerImpl.mAuthResp, 0,
234 System.arraycopy(headerArray, index, body, 1, length);
297 System.arraycopy(headerArray, index, value, 0, 4);
304 System.arraycopy(value, 0, headerImpl.mConnectionID, 0, 4);
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/util/
IntList.java 242 System.arraycopy (values, n, values, n+1, size - n);
262 System.arraycopy (values, n + 1, values, n, size - n - 1);
275 System.arraycopy(values, 0, newv, 0, size);
BitIntSet.java 53 System.arraycopy(bits, 0, newBits, 0, bits.length);
HexParser.java 139 System.arraycopy(result, 0, newr, 0, outAt);
  /dalvik/dx/src/com/android/dx/util/
IntList.java 242 System.arraycopy (values, n, values, n+1, size - n);
262 System.arraycopy (values, n + 1, values, n, size - n - 1);
275 System.arraycopy(values, 0, newv, 0, size);
BitIntSet.java 53 System.arraycopy(bits, 0, newBits, 0, bits.length);
HexParser.java 139 System.arraycopy(result, 0, newr, 0, outAt);
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
BitSet.java 132 System.arraycopy(bits, 0, newbits, 0, bits.length);
157 System.arraycopy(bits, 0, newbits, 0, n);
171 System.arraycopy(bits, 0, s.bits, 0, bits.length);
ANTLRReaderStream.java 79 System.arraycopy(data, 0, newdata, 0, data.length);
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
ChunkedIntArray.java 250 System.arraycopy(fastArray, position*slotsize, buffer, 0, slotsize);
264 System.arraycopy(chunk,slotpos,buffer,0,slotsize);
292 System.arraycopy(m_map, 0, newMap, 0, orgMapSize);
  /external/dexmaker/src/dx/java/com/android/dx/util/
IntList.java 242 System.arraycopy (values, n, values, n+1, size - n);
262 System.arraycopy (values, n + 1, values, n, size - n - 1);
275 System.arraycopy(values, 0, newv, 0, size);
  /frameworks/opt/mms/src/java/com/google/android/mms/pdu/
PduPart.java 142 System.arraycopy(data, 0, mPartData, 0, data.length);
156 System.arraycopy(mPartData, 0, byteArray, 0, mPartData.length);
201 System.arraycopy(contentId, 0, buffer, 1, contentId.length);
  /libcore/luni/src/main/java/java/io/
CharArrayWriter.java 86 System.arraycopy(buf, 0, newbuf, 0, count);
132 System.arraycopy(buf, 0, result, 0, count);
170 System.arraycopy(buffer, offset, this.buf, this.count, len);
  /libcore/luni/src/main/java/java/nio/
ByteArrayBuffer.java 67 System.arraycopy(backingArray, position + arrayOffset, backingArray, arrayOffset, remaining());
109 System.arraycopy(backingArray, arrayOffset + position, dst, dstOffset, byteCount);
267 System.arraycopy(src, srcOffset, backingArray, arrayOffset + position, byteCount);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageCurves.java 361 System.arraycopy(result, 0, redHistogram, 0, 256);
362 System.arraycopy(result, 256, greenHistogram, 0, 256);
363 System.arraycopy(result, 512, blueHistogram, 0, 256);
  /dalvik/dx/src/com/android/dx/command/annotool/
Main.java 96 System.arraycopy(argArray, i, files, 0, files.length);
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/
IntArray.java 83 System.arraycopy(data, 0, newData, 0, data.length);
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
IntArray.h 83 System.arraycopy(data, 0, newData, 0, data.length);

Completed in 1166 milliseconds

<<11121314151617181920>>