HomeSort by relevance Sort by last modified time
    Searched refs:arraycopy (Results 276 - 300 of 937) sorted by null

<<11121314151617181920>>

  /external/smack/src/org/apache/harmony/javax/security/auth/
SubjectDomainCombiner.java 118 System.arraycopy(assignedDomains, 0, pd, cur, assignedDomains.length);
  /frameworks/base/core/java/android/content/res/
ColorStateList.java 239 System.arraycopy(colorList, 0, ncolor, 0, listSize);
242 System.arraycopy(stateSpecList, 0, nstate, 0, listSize);
255 System.arraycopy(colorList, 0, mColors, 0, listSize);
256 System.arraycopy(stateSpecList, 0, mStateSpecs, 0, listSize);
  /frameworks/base/core/java/android/net/dhcp/
DhcpInformPacket.java 59 System.arraycopy(mClientMac, 0, clientId, 1, 6);
DhcpRequestPacket.java 65 System.arraycopy(mClientMac, 0, clientId, 1, 6);
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
SortingCursorWrapper.java 209 System.arraycopy(position, left, position, left + 1, n);
210 System.arraycopy(value, left, value, left + 1, n);
254 System.arraycopy(position, left, position, left + 1, n);
255 System.arraycopy(value, left, value, left + 1, n);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmSmsAddress.java 43 System.arraycopy(data, offset, origBytes, 0, length);
SimTlv.java 79 System.arraycopy(mRecord, mCurDataOffset, ret, 0, mCurDataLength);
  /frameworks/volley/src/com/android/volley/toolbox/
PoolingByteArrayOutputStream.java 77 System.arraycopy(buf, 0, newbuf, 0, count);
  /libcore/crypto/src/main/java/org/conscrypt/
ClientKeyExchange.java 71 System.arraycopy(bb, 1, exchange_keys, 0, exchange_keys.length);
  /libcore/luni/src/main/java/java/io/
BufferedInputStream.java 157 System.arraycopy(localBuf, 0, newbuf, 0, localBuf.length);
162 System.arraycopy(localBuf, markpos, localBuf, 0, localBuf.length
265 System.arraycopy(localBuf, pos, buffer, byteOffset, copylength);
300 System.arraycopy(localBuf, pos, buffer, byteOffset, read);
BufferedOutputStream.java 142 System.arraycopy(buffer, offset, internalBuffer, count, length);
ByteArrayInputStream.java 156 System.arraycopy(this.buf, pos, buffer, byteOffset, copylen);
  /libcore/luni/src/main/java/java/security/
MessageDigestSpi.java 137 System.arraycopy(tmp, 0, buf, offset, tmp.length);
  /libcore/luni/src/main/java/libcore/io/
HeapBufferIterator.java 51 System.arraycopy(buffer, offset + position, dst, dstOffset, byteCount);
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ASN1Integer.java 78 System.arraycopy(in.buffer, in.contentOffset, bytesEncoded, 0,
  /libcore/support/src/test/java/tests/support/
Support_OutputStream.java 95 System.arraycopy(buffer, 0, toReturn, 0, position);
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
BytesBufferPool.java 53 System.arraycopy(data, 0, newData, 0, data.length);
  /packages/apps/Nfc/tests/src/com/android/nfc/
MockLlcpSocket.java 66 System.arraycopy(arr, 0, receiveBuffer, 0, arr.length);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
ListValueCellEditor.java 53 System.arraycopy(items, 0, mItems, 0, items.length);
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
ShortName.java 81 System.arraycopy(nameArr, 0, result, 0, nameArr.length);
82 System.arraycopy(extArr, 0, result, 8, extArr.length);
92 System.arraycopy(name.toCharArray(), 0, result, 0, name.length());
93 System.arraycopy(ext.toCharArray(), 0, result, 8, ext.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...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/
DSAParametersGenerator.java 141 System.arraycopy(seed, 0, part2, 0, seed.length);
169 System.arraycopy(part1, 0, w, w.length - (k + 1) * part1.length, part1.length);
174 System.arraycopy(part1, part1.length - ((w.length - (n) * part1.length)), w, 0, w.length - n * part1.length);
349 System.arraycopy(seed, 0, U, 0, seed.length);
350 System.arraycopy(ggen, 0, U, seed.length, ggen.length);
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
ByteString.java 193 System.arraycopy(bytes, offset, copy, 0, size);
752 System.arraycopy(b, offset, buffer, bufferPos, length);
757 System.arraycopy(b, offset, buffer, bufferPos, copySize);
763 System.arraycopy(b, offset, buffer, 0 /* count */, length);
784 System.arraycopy(buffer, 0, result, 0, Math.min(buffer.length, length));
    [all...]
  /frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/
RsBenchRS.java 101 System.arraycopy(allocArray, 0, allocArrayZero, 0, allocArray.length);
119 System.arraycopy(mIndividualTests, 0, combined, 0, mIndividualTests.length);
120 System.arraycopy(newTests, 0, combined, mIndividualTests.length, newTests.length);
130 System.arraycopy(mTestNames, 0, combinedNames, 0, mTestNames.length);
131 System.arraycopy(newNames, 0, combinedNames, mTestNames.length, newNames.length);
  /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);

Completed in 863 milliseconds

<<11121314151617181920>>