/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
BEROctetStringGenerator.java | 72 System.arraycopy(b, off, _buf, _off, numToCopy); 94 System.arraycopy(_buf, 0, bytes, 0, _off);
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/ |
SICBlockCipher.java | 58 System.arraycopy(iv, 0, IV, 0, IV.length); 110 System.arraycopy(IV, 0, counter, 0, counter.length);
|
CCMBlockCipher.java | 135 System.arraycopy(enc, 0, out, outOff, enc.length); 159 System.arraycopy(macBlock, 0, mac, 0, mac.length); 204 System.arraycopy(nonce, 0, iv, 1, nonce.length); 230 System.arraycopy(in, index, block, 0, inLen - index); 234 System.arraycopy(block, 0, output, outOff, inLen - index); 238 System.arraycopy(macBlock, 0, output, outOff, output.length - outOff); 244 System.arraycopy(in, inOff + inLen - macSize, macBlock, 0, macSize); 262 System.arraycopy(in, index, block, 0, output.length - outOff); 266 System.arraycopy(block, 0, output, outOff, output.length - outOff); 301 System.arraycopy(nonce, 0, b0, 1, nonce.length) [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/renderer/queue/ |
GeometryList.java | 108 System.arraycopy(geometries, 0, temp, 0, size); 137 System.arraycopy(geometries, 0, geometries2, 0, size);
|
/external/mockito/src/org/mockito/internal/invocation/ |
ArgumentsProcessor.java | 36 System.arraycopy(args, 0, newArgs, 0, nonVarArgsCount); 37 System.arraycopy(varArgs, 0, newArgs, nonVarArgsCount, varArgsCount);
|
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/apple/ |
AppleDataBox.java | 61 System.arraycopy(data, 0, this.data, 0, data.length); 65 System.arraycopy(fourBytes, 0, this.fourBytes, 0, 4);
|
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/ |
SparseArray.java | 161 System.arraycopy(mKeys, 0, nkeys, 0, mKeys.length); 162 System.arraycopy(mValues, 0, nvalues, 0, mValues.length); 170 System.arraycopy(mKeys, i, mKeys, i + 1, mSize - i); 171 System.arraycopy(mValues, i, mValues, i + 1, mSize - i); 301 System.arraycopy(mKeys, 0, nkeys, 0, mKeys.length); 302 System.arraycopy(mValues, 0, nvalues, 0, mValues.length); 327 System.arraycopy(mKeys, 0, nkeys, 0, mKeys.length); 328 System.arraycopy(mValues, 0, nvalues, 0, mValues.length);
|
/frameworks/base/core/java/com/android/internal/util/ |
BitwiseOutputStream.java | 66 System.arraycopy(mBuf, 0, newBuf, 0, len); 78 System.arraycopy(mBuf, 0, newBuf, 0, mEnd >>> 3);
|
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/util/ |
SparseWeakArray.java | 150 System.arraycopy(mKeys, 0, nkeys, 0, newSize); 151 System.arraycopy(mValues, 0, nvalues, 0, newSize); 191 System.arraycopy(mKeys, 0, nkeys, 0, mKeys.length); 192 System.arraycopy(mValues, 0, nvalues, 0, mValues.length); 200 System.arraycopy(mKeys, i, mKeys, i + 1, mSize - i); 201 System.arraycopy(mValues, i, mValues, i + 1, mSize - i); 331 System.arraycopy(mKeys, 0, nkeys, 0, mKeys.length); 332 System.arraycopy(mValues, 0, nvalues, 0, mValues.length);
|
/libcore/crypto/src/main/java/org/conscrypt/ |
SSLSocketInputStream.java | 156 System.arraycopy(buffer, pos, buffer, 0, end-pos); 160 System.arraycopy(src, 0, buffer, end, length);
|
ConnectionStateTLS.java | 115 System.arraycopy(serverRandom, 0, seed, 0, serverRandom.length); 116 System.arraycopy(clientRandom, 0, seed, serverRandom.length, 129 System.arraycopy(key_block, 0, client_mac_secret, 0, hash_size); 130 System.arraycopy(key_block, hash_size, 132 System.arraycopy(key_block, 2*hash_size, client_key, 0, key_size); 133 System.arraycopy(key_block, 2*hash_size+key_size, 140 System.arraycopy(clientRandom, 0, 142 System.arraycopy(serverRandom, 0, 242 System.arraycopy(fragment, offset, res, 0, len); 346 System.arraycopy(data, 0, content, 0, content.length) [all...] |
/libcore/support/src/test/java/tests/support/ |
Support_ASimpleWriter.java | 63 System.arraycopy(src, offset, buf, pos, count); 73 System.arraycopy(buf, 0, toReturn, 0, pos);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/resources/platform/ |
DeclareStyleableInfo.java | 61 System.arraycopy(parents, 0, mParents, 0, parents.length); 69 System.arraycopy(attrs, 0, mAttributes, 0, attrs.length);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/ |
AndroidNature.java | 163 System.arraycopy(natures, 0, newNatures, 1, natures.length); 166 System.arraycopy(natures, 0, newNatures, 0, natures.length); 196 System.arraycopy(commands, 0, newCommands, 1, commands.length); 240 System.arraycopy(commands, 0, newCommands, 0, index); 248 System.arraycopy(commands, index, newCommands, index + 1, commands.length-index); 268 System.arraycopy(commands, 0, newCommands, 0, commands.length); 289 System.arraycopy(commands, 0, newCommands, 0, i); 290 System.arraycopy(commands, i + 1, newCommands, i, commands.length - i - 1);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/ |
RelativeLayoutRuleTest.java | 53 System.arraycopy(graphicsFragments, 0, combined, 0, graphicsFragments.length); 54 System.arraycopy(extraFragments, 0, combined, graphicsFragments.length,
|
/frameworks/support/v4/java/android/support/v4/util/ |
SimpleArrayMap.java | 259 System.arraycopy(ohashes, 0, mHashes, 0, mSize); 260 System.arraycopy(oarray, 0, mArray, 0, mSize<<1); 393 System.arraycopy(ohashes, 0, mHashes, 0, ohashes.length); 394 System.arraycopy(oarray, 0, mArray, 0, oarray.length); 403 System.arraycopy(mHashes, index, mHashes, index + 1, mSize - index); 404 System.arraycopy(mArray, index << 1, mArray, (index + 1) << 1, (mSize - index) << 1); 423 System.arraycopy(array.mHashes, 0, mHashes, 0, N); 424 System.arraycopy(array.mArray, 0, mArray, 0, N<<1); 479 System.arraycopy(ohashes, 0, mHashes, 0, index); 480 System.arraycopy(oarray, 0, mArray, 0, index << 1) [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/ |
SignatureSpi.java | 290 System.arraycopy(first, 0, res, res.length / 2 - first.length, first.length); 291 System.arraycopy(second, 0, res, res.length - second.length, second.length); 305 System.arraycopy(res, 1, tmp, 0, tmp.length); 322 System.arraycopy(encoding, 0, first, 0, first.length); 323 System.arraycopy(encoding, first.length, second, 0, second.length);
|
/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);
|
/frameworks/base/core/java/android/os/ |
WorkSource.java | 187 System.arraycopy(other.mUids, 0, mUids, 0, mNum); 193 System.arraycopy(other.mNames, 0, mNames, 0, mNum); 373 if (i1 < N1) System.arraycopy(uids1, i1+1, uids1, i1, N1-i1); 408 System.arraycopy(uids1, i1+1, uids1, i1, N1-i1); 409 System.arraycopy(names1, i1+1, names1, i1, N1-i1); 473 if (i1 > 0) System.arraycopy(uids1, 0, newuids, 0, i1); 474 if (i1 < N1) System.arraycopy(uids1, i1, newuids, i1+1, N1-i1); 478 if (i1 < N1) System.arraycopy(uids1, i1, uids1, i1+1, N1-i1); 504 System.arraycopy(uids1, i1, uids1, start, N1-i1); 587 System.arraycopy(mUids, i1, mUids, start, mNum-i1) [all...] |
/frameworks/base/core/tests/coretests/src/android/content/pm/ |
LimitedLengthInputStreamTest.java | 86 System.arraycopy(TEST_STRING1, offset, expected, 0, length); 91 System.arraycopy(temp, 0, actual, 0, length); 127 System.arraycopy(temp, 0, actual, 0, actual.length); 136 System.arraycopy(TEST_STRING1, offset, expected, 0, length); 141 System.arraycopy(temp, 0, actual, 0, length);
|
/frameworks/base/graphics/java/android/graphics/ |
ColorMatrix.java | 52 System.arraycopy(src, 0, mArray, 0, 20); 59 System.arraycopy(src.mArray, 0, mArray, 0, 20); 87 System.arraycopy(src.mArray, 0, mArray, 0, 20); 94 System.arraycopy(src, 0, mArray, 0, 20); 178 System.arraycopy(tmp, 0, mArray, 0, 20);
|
/frameworks/opt/mms/src/java/com/google/android/mms/pdu/ |
EncodedStringValue.java | 60 System.arraycopy(data, 0, mData, 0, data.length); 109 System.arraycopy(mData, 0, byteArray, 0, mData.length); 125 System.arraycopy(textString, 0, mData, 0, textString.length); 169 System.arraycopy(textString, 0, mData, 0, textString.length); 194 System.arraycopy(mData, 0, dstBytes, 0, len);
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/encodings/ |
OAEPEncoding.java | 150 System.arraycopy(in, inOff, block, block.length - inLen, inLen); 164 System.arraycopy(defHash, 0, block, defHash.length, defHash.length); 186 System.arraycopy(seed, 0, block, 0, defHash.length); 224 System.arraycopy(data, 0, block, block.length - data.length, data.length); 301 System.arraycopy(block, start, output, 0, output.length); 343 System.arraycopy(hashBuf, 0, mask, counter * hashBuf.length, hashBuf.length); 356 System.arraycopy(hashBuf, 0, mask, counter * hashBuf.length, mask.length - (counter * hashBuf.length));
|
/external/emma/core/java12/com/vladium/util/ |
ByteArrayOStream.java | 63 System.arraycopy (mbuf, 0, newbuf, 0, pos); 87 System.arraycopy (mbuf, 0, newbuf, 0, pos); 112 System.arraycopy (mbuf, 0, newbuf, 0, pos); 162 // System.arraycopy (m_buf, 0, newbuf, 0, m_pos); 191 // System.arraycopy (mbuf, 0, newbuf, 0, pos); 216 System.arraycopy (mbuf, 0, result, 0, pos); 255 System.arraycopy (mbuf, 0, newbuf, 0, pos); 284 System.arraycopy (mbuf, 0, newbuf, 0, pos); 292 System.arraycopy (buf, offset, mbuf, pos, length);
|
/frameworks/base/core/java/android/net/nsd/ |
DnsSdTxtRecord.java | 129 System.arraycopy(oldBytes, 0, mData, 0, avStart); 130 System.arraycopy(oldBytes, avStart + avLen + 1, mData, avStart, 182 System.arraycopy(oldBytes, 0, mData, 0, insertion); 184 System.arraycopy(oldBytes, insertion, mData, newLen - secondHalfLen, secondHalfLen); 186 System.arraycopy(keyBytes, 0, mData, insertion + 1, keyBytes.length); 189 System.arraycopy(value, 0, mData, insertion + keyBytes.length + 2, valLen); 233 System.arraycopy(mData, avStart + aLen + 2, value, 0, avLen - aLen - 1);
|