HomeSort by relevance Sort by last modified time
    Searched full:arraycopy (Results 151 - 175 of 1181) sorted by null

1 2 3 4 5 67 8 91011>>

  /libcore/crypto/src/main/java/org/conscrypt/
HandshakeIODataStream.java 127 System.arraycopy(buffer, read_pos,
158 System.arraycopy(buffer, read_pos, res, 0, length);
168 System.arraycopy(buffer, read_pos, dst, offset, length);
212 System.arraycopy(src, from, buffer, read_pos_end, length);
221 System.arraycopy(buffer, 0, new_buff, 0, buffer.length);
341 System.arraycopy(vector, 0, buffer, write_pos, vector.length);
360 System.arraycopy(buffer, write_pos_beg,
365 System.arraycopy(buffer, write_pos_beg, res, 0, length);
432 System.arraycopy(buffer, 0, res, 0, len);
HandshakeProtocol.java 349 System.arraycopy(md5_digest, 0, digest, 0, md5_digest.length);
350 System.arraycopy(sha_digest, 0, digest, md5_digest.length,
396 System.arraycopy(md5.digest(b), 0, buf, 0, 16);
404 System.arraycopy(sha.digest(b), 0, buf, 16, 20);
448 System.arraycopy(clientHello.getRandom(), 0, seed, 0, 32);
449 System.arraycopy(serverHello.getRandom(), 0, seed, 32, 32);
  /frameworks/base/core/java/android/util/
ArrayMap.java 309 System.arraycopy(ohashes, 0, mHashes, 0, mSize);
310 System.arraycopy(oarray, 0, mArray, 0, mSize<<1);
448 System.arraycopy(ohashes, 0, mHashes, 0, ohashes.length);
449 System.arraycopy(oarray, 0, mArray, 0, oarray.length);
458 System.arraycopy(mHashes, index, mHashes, index + 1, mSize - index);
459 System.arraycopy(mArray, index << 1, mArray, (index + 1) << 1, (mSize - index) << 1);
505 System.arraycopy(array.mHashes, 0, mHashes, 0, N);
506 System.arraycopy(array.mArray, 0, mArray, 0, N<<1);
562 System.arraycopy(ohashes, 0, mHashes, 0, index);
563 System.arraycopy(oarray, 0, mArray, 0, index << 1)
    [all...]
LongSparseArray.java 212 System.arraycopy(mKeys, 0, nkeys, 0, mKeys.length);
213 System.arraycopy(mValues, 0, nvalues, 0, mValues.length);
221 System.arraycopy(mKeys, i, mKeys, i + 1, mSize - i);
222 System.arraycopy(mValues, i, mValues, i + 1, mSize - i);
364 System.arraycopy(mKeys, 0, nkeys, 0, mKeys.length);
365 System.arraycopy(mValues, 0, nvalues, 0, mValues.length);
SparseArray.java 225 System.arraycopy(mKeys, 0, nkeys, 0, mKeys.length);
226 System.arraycopy(mValues, 0, nvalues, 0, mValues.length);
234 System.arraycopy(mKeys, i, mKeys, i + 1, mSize - i);
235 System.arraycopy(mValues, i, mValues, i + 1, mSize - i);
379 System.arraycopy(mKeys, 0, nkeys, 0, mKeys.length);
380 System.arraycopy(mValues, 0, nvalues, 0, mValues.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...]
LongSparseArray.java 206 System.arraycopy(mKeys, 0, nkeys, 0, mKeys.length);
207 System.arraycopy(mValues, 0, nvalues, 0, mValues.length);
215 System.arraycopy(mKeys, i, mKeys, i + 1, mSize - i);
216 System.arraycopy(mValues, i, mValues, i + 1, mSize - i);
347 System.arraycopy(mKeys, 0, nkeys, 0, mKeys.length);
348 System.arraycopy(mValues, 0, nvalues, 0, mValues.length);
SparseArrayCompat.java 199 System.arraycopy(mKeys, 0, nkeys, 0, mKeys.length);
200 System.arraycopy(mValues, 0, nvalues, 0, mValues.length);
208 System.arraycopy(mKeys, i, mKeys, i + 1, mSize - i);
209 System.arraycopy(mValues, i, mValues, i + 1, mSize - i);
342 System.arraycopy(mKeys, 0, nkeys, 0, mKeys.length);
343 System.arraycopy(mValues, 0, nvalues, 0, mValues.length);
  /packages/apps/Nfc/nxp/src/com/android/nfc/dhimpl/
NativeNfcTag.java 457 System.arraycopy(mTechList, 0, mNewTechList, 0, mTechList.length);
462 System.arraycopy(mTechHandles, 0, mNewHandleList, 0, mTechHandles.length);
467 System.arraycopy(mTechLibNfcTypes, 0, mNewTypeList, 0, mTechLibNfcTypes.length);
478 System.arraycopy(mTechList, 0, mNewTechList, 0, techIndex);
479 System.arraycopy(mTechList, techIndex + 1, mNewTechList, techIndex,
484 System.arraycopy(mTechHandles, 0, mNewHandleList, 0, techIndex);
485 System.arraycopy(mTechHandles, techIndex + 1, mNewTechList, techIndex,
490 System.arraycopy(mTechLibNfcTypes, 0, mNewTypeList, 0, techIndex);
491 System.arraycopy(mTechLibNfcTypes, techIndex + 1, mNewTypeList, techIndex,
530 System.arraycopy(oldTechExtras, 0, newTechExtras, 0, oldTechExtras.length)
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSparseArray.java 176 System.arraycopy(mKeys, 0, nkeys, 0, mKeys.length);
177 System.arraycopy(mValues, 0, nvalues, 0, mValues.length);
185 System.arraycopy(mKeys, i, mKeys, i + 1, mSize - i);
186 System.arraycopy(mValues, i, mValues, i + 1, mSize - i);
325 System.arraycopy(mKeys, 0, nkeys, 0, mKeys.length);
326 System.arraycopy(mValues, 0, nvalues, 0, mValues.length);
  /frameworks/base/core/java/android/text/
SpannableStringInternal.java 122 System.arraycopy(mSpans, 0, newtags, 0, mSpanCount);
123 System.arraycopy(mSpanData, 0, newdata, 0, mSpanCount * 3);
151 System.arraycopy(spans, i + 1, spans, i, c);
152 System.arraycopy(data, (i + 1) * COLUMNS,
259 System.arraycopy(ret, j, ret, j + 1, count - j);
281 System.arraycopy(ret, 0, nret, 0, count);
PackedObjectVector.java 118 System.arraycopy(mValues, 0, newvalues, 0, mColumns * mRowGapStart);
119 System.arraycopy(mValues, (mRows - after) * mColumns, newvalues, (newsize - after) * mColumns, after * mColumns);
  /frameworks/base/graphics/java/android/renderscript/
Program.java 259 System.arraycopy(str, 0, buf2, 0, str.length);
355 System.arraycopy(mInputs, 0, p.mInputs, 0, mInputCount);
357 System.arraycopy(mOutputs, 0, p.mOutputs, 0, mOutputCount);
359 System.arraycopy(mConstants, 0, p.mConstants, 0, mConstantCount);
362 System.arraycopy(mTextureTypes, 0, p.mTextures, 0, mTextureCount);
364 System.arraycopy(mTextureNames, 0, p.mTextureNames, 0, mTextureCount);
  /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...]
  /cts/tools/signature-tools/src/signature/
Main.java 129 System.arraycopy(orig, 0, newa, 0, n);
130 System.arraycopy(orig, n + 1, newa, n, len - n);
  /external/apache-xml/src/main/java/org/apache/xml/utils/
StringToIntTable.java 102 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
108 System.arraycopy(m_values, 0, newValues, 0, m_firstFree + 1);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/io/
CipherInputStream.java 189 System.arraycopy(buf, bufOff, b, off, available);
196 System.arraycopy(buf, bufOff, b, off, len);
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/cipher/
CipherInputStream.java 67 System.arraycopy(input_buffer, input_buffer_pos, b, off, thiscopy);
124 System.arraycopy(buffer, pos, dst, off, copy);
CipherOutputStream.java 47 System.arraycopy(src, off, out_buffer, out_buffer_pos, copy);
117 System.arraycopy(src, off, buffer, pos, copy);
  /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/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/adaptivestreaming/
AbstractManifestWriter.java 89 System.arraycopy(referenceTimes, 0, referenceTimesMinusLast, 0, referenceTimes.length - 1);
91 System.arraycopy(checkTimes, 0, checkTimesMinusLast, 0, checkTimes.length - 1);
  /external/smack/src/org/apache/harmony/javax/security/auth/callback/
PasswordCallback.java 94 System.arraycopy(password, 0, inputPassword, 0, inputPassword.length);
110 System.arraycopy(inputPassword, 0, tmp, 0, tmp.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/core/tests/coretests/src/android/widget/listview/
ListGetCheckItemIdsTest.java 47 System.arraycopy(checkItemIds, 0, sortedCheckItemsIds, 0, checkItemIds.length);
51 System.arraycopy(expectedIds, 0, sortedExpectedIds, 0, expectedIds.length);
  /frameworks/base/media/java/android/media/
ResampleInputStream.java 93 System.arraycopy(mBuf, 0, bf, 0, mBufCount);
116 if (mBufCount > 0) System.arraycopy(mBuf, nFwd, mBuf, 0, mBufCount);

Completed in 786 milliseconds

1 2 3 4 5 67 8 91011>>