/libcore/luni/src/main/java/javax/crypto/spec/ |
SecretKeySpec.java | 70 System.arraycopy(key, 0, this.key, 0, key.length); 111 System.arraycopy(key, offset, this.key, 0, len); 139 System.arraycopy(key, 0, result, 0, key.length);
|
RC5ParameterSpec.java | 84 System.arraycopy(iv, 0, this.iv, 0, 2*(wordSize/8)); 126 System.arraycopy(iv, offset, this.iv, 0, 2*(wordSize/8)); 166 System.arraycopy(iv, 0, result, 0, iv.length);
|
/frameworks/base/obex/javax/obex/ |
ClientSession.java | 86 System.arraycopy(header.nonce, 0, mChallengeDigest, 0, 16); 108 System.arraycopy(head, 0, requestPacket, 4, head.length); 152 System.arraycopy(head.nonce, 0, mChallengeDigest, 0, 16); 158 System.arraycopy(mConnectionId, 0, head.mConnectionID, 0, 4); 196 System.arraycopy(header.nonce, 0, mChallengeDigest, 0, 16); 201 System.arraycopy(mConnectionId, 0, header.mConnectionID, 0, 4); 213 System.arraycopy(mConnectionId, 0, head, 1, 4); 261 System.arraycopy(head.nonce, 0, mChallengeDigest, 0, 16); 269 System.arraycopy(mConnectionId, 0, head.mConnectionID, 0, 4); 298 System.arraycopy(headset.nonce, 0, mChallengeDigest, 0, 16) [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/ |
OFBBlockCipher.java | 74 System.arraycopy(iv, 0, IV, IV.length - iv.length, iv.length); 82 System.arraycopy(iv, 0, IV, 0, IV.length); 171 System.arraycopy(ofbV, blockSize, ofbV, 0, ofbV.length - blockSize); 172 System.arraycopy(ofbOutV, 0, ofbV, ofbV.length - blockSize, blockSize); 183 System.arraycopy(IV, 0, ofbV, 0, IV.length);
|
CFBBlockCipher.java | 77 System.arraycopy(iv, 0, IV, IV.length - iv.length, iv.length); 85 System.arraycopy(iv, 0, IV, 0, IV.length); 194 System.arraycopy(cfbV, blockSize, cfbV, 0, cfbV.length - blockSize); 195 System.arraycopy(out, outOff, cfbV, cfbV.length - blockSize, blockSize); 234 System.arraycopy(cfbV, blockSize, cfbV, 0, cfbV.length - blockSize); 235 System.arraycopy(in, inOff, cfbV, cfbV.length - blockSize, blockSize); 254 System.arraycopy(IV, 0, cfbV, 0, IV.length);
|
CBCBlockCipher.java | 78 System.arraycopy(iv, 0, IV, 0, iv.length); 157 System.arraycopy(IV, 0, cbcV, 0, IV.length); 201 System.arraycopy(out, outOff, cbcV, 0, cbcV.length); 230 System.arraycopy(in, inOff, cbcNextV, 0, blockSize);
|
/libcore/luni/src/main/java/java/util/ |
ArrayList.java | 100 System.arraycopy(a, 0, newArray, 0, a.length); 121 System.arraycopy(a, 0, newArray, 0, s); 151 System.arraycopy(a, index, a, index + 1, s - index); 155 System.arraycopy(a, 0, newArray, 0, index); 156 System.arraycopy(a, index, newArray, index + 1, s - index); 195 int newSize = s + newPartSize; // If add overflows, arraycopy will fail 199 System.arraycopy(a, 0, newArray, 0, s); 202 System.arraycopy(newPart, 0, a, s, newPartSize); 234 int newSize = s + newPartSize; // If add overflows, arraycopy will fail 236 System.arraycopy(a, index, a, index + newPartSize, s - index) [all...] |
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/ |
ListGenerators.java | 81 System.arraycopy(elements, 0, all, 0, elements.length); 82 System.arraycopy(suffix, 0, all, elements.length, suffix.length); 93 System.arraycopy(prefix, 0, all, 0, 2); 94 System.arraycopy(elements, 0, all, 2, elements.length); 107 System.arraycopy(prefix, 0, all, 0, 2); 108 System.arraycopy(elements, 0, all, 2, elements.length); 109 System.arraycopy(suffix, 0, all, 2 + elements.length, 2);
|
/libcore/luni/src/main/java/org/apache/harmony/security/asn1/ |
BerOutputStream.java | 70 System.arraycopy(content, 0, encoded, offset, length); 78 System.arraycopy(bStr.bytes, 0, encoded, offset + 1, length - 1); 100 System.arraycopy(content, 0, encoded, offset, length); 105 System.arraycopy(content, 0, encoded, offset, length); 110 System.arraycopy(content, 0, encoded, offset, length); 115 System.arraycopy(content, 0, encoded, offset, length); 176 System.arraycopy(content, 0, encoded, offset, length);
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
NodeVector.java | 95 System.arraycopy(this.m_map, 0, clone.m_map, 0, this.m_map.length); 132 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); 166 System.arraycopy(m_map, 0, newMap, 0, ff + 1); 260 System.arraycopy(m_map, 0, newMap, 0, m_firstFree); 376 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); 383 System.arraycopy(m_map, at, m_map, at + 1, m_firstFree - at); 412 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + nNodes); 417 System.arraycopy(nodes.m_map, 0, m_map, m_firstFree, nNodes); 478 System.arraycopy(m_map, i + 1, m_map, i - 1, m_firstFree - i); 506 System.arraycopy(m_map, i + 1, m_map, i - 1, m_firstFree - i) [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/ |
DESedeWrapEngine.java | 149 System.arraycopy(in, inOff, keyToBeWrapped, 0, inLen); 157 System.arraycopy(keyToBeWrapped, 0, WKCKS, 0, keyToBeWrapped.length); 158 System.arraycopy(CKS, 0, WKCKS, keyToBeWrapped.length, CKS.length); 182 System.arraycopy(this.iv, 0, TEMP2, 0, this.iv.length); 183 System.arraycopy(TEMP1, 0, TEMP2, this.iv.length, TEMP1.length); 268 System.arraycopy(TEMP2, 0, this.iv, 0, 8); 269 System.arraycopy(TEMP2, 8, TEMP1, 0, TEMP2.length - 8); 289 System.arraycopy(WKCKS, 0, result, 0, WKCKS.length - 8); 290 System.arraycopy(WKCKS, WKCKS.length - 8, CKStoBeVerified, 0, 8); 325 System.arraycopy(digest, 0, result, 0, 8) [all...] |
DESedeEngine.java | 56 System.arraycopy(keyMaster, 0, key1, 0, key1.length); 60 System.arraycopy(keyMaster, 8, key2, 0, key2.length); 66 System.arraycopy(keyMaster, 16, key3, 0, key3.length);
|
/libcore/luni/src/main/java/org/apache/harmony/security/provider/crypto/ |
SHA1PRNG_SecureRandomImpl.java | 221 System.arraycopy(copies, HASHCOPY_OFFSET, this.seed, HASH_OFFSET, 310 System.arraycopy(seed, HASH_OFFSET, copies, HASHCOPY_OFFSET, 357 System.arraycopy(nextBytes, nextBIndex, bytes, nextByteToReturn, n); 389 System.arraycopy(seed, 0, copies, FRAME_OFFSET, FRAME_LENGTH); 390 System.arraycopy(copies, EXTRAFRAME_OFFSET, seed, 0, 394 System.arraycopy(copies, FRAME_OFFSET, seed, 0, FRAME_LENGTH); 413 System.arraycopy(nextBytes, 0, bytes, nextByteToReturn, j); 448 System.arraycopy(seed, 0, intData, 0, nRemaining); 449 System.arraycopy(seed, HASH_OFFSET, intData, nRemaining, 473 System.arraycopy(seed, 0, intData, offset, FRAME_LENGTH) [all...] |
/external/proguard/src/proguard/classfile/editor/ |
ClassEditor.java | 61 System.arraycopy(interfaces, 0, 87 System.arraycopy(interfaces, interfaceIndex+1, 129 System.arraycopy(fields, 0, 157 System.arraycopy(fields, fieldIndex+1, 199 System.arraycopy(methods, 0, 227 System.arraycopy(methods, methodIndex+1,
|
/frameworks/base/core/java/android/util/ |
LongSparseLongArray.java | 127 System.arraycopy(mKeys, index + 1, mKeys, index, mSize - (index + 1)); 128 System.arraycopy(mValues, index + 1, mValues, index, mSize - (index + 1)); 150 System.arraycopy(mKeys, i, mKeys, i + 1, mSize - i); 151 System.arraycopy(mValues, i, mValues, i + 1, mSize - i); 255 System.arraycopy(mKeys, 0, nkeys, 0, mKeys.length); 256 System.arraycopy(mValues, 0, nvalues, 0, mValues.length);
|
SparseLongArray.java | 123 System.arraycopy(mKeys, index + 1, mKeys, index, mSize - (index + 1)); 124 System.arraycopy(mValues, index + 1, mValues, index, mSize - (index + 1)); 146 System.arraycopy(mKeys, i, mKeys, i + 1, mSize - i); 147 System.arraycopy(mValues, i, mValues, i + 1, mSize - i); 251 System.arraycopy(mKeys, 0, nkeys, 0, mKeys.length); 252 System.arraycopy(mValues, 0, nvalues, 0, mValues.length);
|
/frameworks/base/core/java/com/android/internal/util/ |
ArrayUtils.java | 191 System.arraycopy(array, 0, result, 0, end); 220 System.arraycopy(array, 0, result, 0, i); 221 System.arraycopy(array, i + 1, result, i, length - i - 1); 240 System.arraycopy(cur, 0, ret, 0, N); 254 System.arraycopy(cur, 0, ret, 0, i); 257 System.arraycopy(cur, i + 1, ret, i, N - i - 1);
|
/packages/apps/UnifiedEmail/src/com/android/mail/utils/ |
SparseLongArray.java | 101 System.arraycopy(mKeys, index + 1, mKeys, index, mSize - (index + 1)); 102 System.arraycopy(mValues, index + 1, mValues, index, mSize - (index + 1)); 124 System.arraycopy(mKeys, i, mKeys, i + 1, mSize - i); 125 System.arraycopy(mValues, i, mValues, i + 1, mSize - i); 218 System.arraycopy(mKeys, 0, nkeys, 0, mKeys.length); 219 System.arraycopy(mValues, 0, nvalues, 0, mValues.length);
|
/dalvik/dx/tests/087-ssa-local-vars/ |
Blort.java | 21 System.arraycopy(stringArray, 0, objectArray, 0, stringArray.length); 23 System.arraycopy(objectArray, 0, stringArray, 0, stringArray.length); 27 System.arraycopy(objectArray, 0, stringArray, 0,stringArray.length);
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/ |
IntArrayList.java | 94 System.arraycopy(oldData, 0, elements, 0, n); 108 System.arraycopy(elements, 0, a, 0, n); 139 System.arraycopy(this.elements, 0, a.elements, 0, this.elements.length);
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/ |
BigIntegers.java | 29 System.arraycopy(bytes, 1, tmp, 0, tmp.length); 58 System.arraycopy(bytes, 1, tmp, tmp.length - (bytes.length - 1), bytes.length - 1); 76 System.arraycopy(bytes, 0, tmp, tmp.length - bytes.length, bytes.length);
|
/libcore/luni/src/main/java/java/security/ |
SignedObject.java | 47 System.arraycopy(content, 0, tmp, 0, content.length); 50 System.arraycopy(signature, 0, tmp, 0, signature.length); 120 System.arraycopy(signature, 0, sig, 0, signature.length);
|
/cts/tests/tests/hardware/src/android/hardware/cts/helpers/ |
TestSensorEvent.java | 35 System.arraycopy(event.values, 0, values, 0, event.values.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/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/ |
NullDigest.java | 37 System.arraycopy(res, 0, out, outOff, res.length);
|