HomeSort by relevance Sort by last modified time
    Searched refs:arraycopy (Results 26 - 50 of 1421) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/
X9IntegerConverter.java 32 System.arraycopy(bytes, bytes.length - tmp.length, tmp, 0, tmp.length);
40 System.arraycopy(bytes, 0, tmp, tmp.length - bytes.length, bytes.length);
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
UVector32.java 32 System.arraycopy(buffer, index, buffer, index + 1, length - index);
44 System.arraycopy(buffer, 0, newBuffer, 0, length);
UVector64.java 32 System.arraycopy(buffer, index, buffer, index + 1, length - index);
44 System.arraycopy(buffer, 0, newBuffer, 0, length);
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
UVector32.java 28 System.arraycopy(buffer, index, buffer, index + 1, length - index);
40 System.arraycopy(buffer, 0, newBuffer, 0, length);
UVector64.java 28 System.arraycopy(buffer, index, buffer, index + 1, length - index);
40 System.arraycopy(buffer, 0, newBuffer, 0, length);
  /external/oauth/core/src/main/java/net/oauth/client/
ExcerptInputStream.java 27 System.arraycopy(ELLIPSIS, 0, excerpt, total, ELLIPSIS.length);
30 System.arraycopy(excerpt, 0, tmp, 0, total);
  /external/smali/util/src/main/java/org/jf/util/
SparseIntArray.java 113 System.arraycopy(mKeys, index + 1, mKeys, index, mSize - (index + 1));
114 System.arraycopy(mValues, index + 1, mValues, index, mSize - (index + 1));
138 System.arraycopy(mKeys, 0, nkeys, 0, mKeys.length);
139 System.arraycopy(mValues, 0, nvalues, 0, mValues.length);
147 System.arraycopy(mKeys, i, mKeys, i + 1, mSize - i);
148 System.arraycopy(mValues, i, mValues, i + 1, mSize - i);
233 System.arraycopy(mKeys, 0, nkeys, 0, mKeys.length);
234 System.arraycopy(mValues, 0, nvalues, 0, mValues.length);
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/util/
IntArray.java 28 System.arraycopy(mData, 0, temp, 0, mSize);
48 System.arraycopy(mData, 0, result, 0, mSize);
  /frameworks/support/compat/java/android/support/v4/database/
DatabaseUtilsCompat.java 54 System.arraycopy(originalValues, 0, result, 0, originalValues.length);
55 System.arraycopy(newValues, 0, result, originalValues.length, newValues.length);
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
IntArray.java 28 System.arraycopy(mData, 0, temp, 0, mSize);
48 System.arraycopy(mData, 0, result, 0, mSize);
  /packages/apps/WallpaperPicker/src/com/android/gallery3d/glrenderer/
IntArray.java 28 System.arraycopy(mData, 0, temp, 0, mSize);
48 System.arraycopy(mData, 0, result, 0, mSize);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/wavelib/
PipeShort.java 51 System.arraycopy(buffer, offset, mBuffer, rear, written);
57 System.arraycopy(buffer, offset + written, mBuffer, 0, count);
102 // In particular, an overrun during the System.arraycopy will result in reading corrupt data
103 System.arraycopy(mBuffer, front, buffer, offset, red);
110 System.arraycopy(mBuffer, 0, buffer, offset + red, count);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/hce/
DualNonPaymentEmulatorActivity.java 36 System.arraycopy(TransportService2.APDU_COMMAND_SEQUENCE, 0, commandSequences, 0,
38 System.arraycopy(AccessService.APDU_COMMAND_SEQUENCE, 0, commandSequences,
44 System.arraycopy(TransportService2.APDU_RESPOND_SEQUENCE, 0, responseSequences, 0,
46 System.arraycopy(AccessService.APDU_RESPOND_SEQUENCE, 0, responseSequences,
OnAndOffHostEmulatorActivity.java 37 System.arraycopy(OffHostService.APDU_COMMAND_SEQUENCE, 0, commandSequences, 0,
39 System.arraycopy(AccessService.APDU_COMMAND_SEQUENCE, 0, commandSequences,
45 System.arraycopy(OffHostService.APDU_RESPOND_SEQUENCE, 0, responseSequences, 0,
47 System.arraycopy(AccessService.APDU_RESPOND_SEQUENCE, 0, responseSequences,
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/
PKCS12Key.java 35 System.arraycopy(password, 0, this.password, 0, password.length);
  /frameworks/base/core/java/android/util/
LongArray.java 72 System.arraycopy(mValues, index, mValues, index + 1, mSize - index);
86 System.arraycopy(values.mValues, 0, mValues, mSize, count);
101 System.arraycopy(mValues, 0, newValues, 0, currentSize);
156 System.arraycopy(mValues, index + 1, mValues, index, mSize - index - 1);
  /frameworks/base/obex/javax/obex/
PrivateInputStream.java 122 System.arraycopy(mData, mIndex, b, offset1, currentDataLength);
134 System.arraycopy(mData, mIndex, b, offset1, remainReadLength);
152 System.arraycopy(mData, mIndex, temp, 0, mData.length - mIndex);
153 System.arraycopy(body, start, temp, mData.length - mIndex, body.length - start);
ApplicationParameter.java 119 System.arraycopy(mArray, 0, array_tmp, 0, mLength);
125 System.arraycopy(value, 0, mArray, mLength, len);
131 System.arraycopy(mArray, 0, para, 0, mLength);
  /libcore/luni/src/main/java/android/system/
UnixSocketAddress.java 52 System.arraycopy(sun_path, 0, this.sun_path, 0, sun_path.length);
63 System.arraycopy(nameBytes, 0, path, 1, nameBytes.length);
74 System.arraycopy(pathNameBytes, 0, path, 0, pathNameBytes.length);
91 System.arraycopy(sun_path, 0, sunPathCopy, 0, sun_path.length);
  /libcore/ojluni/src/main/java/javax/crypto/spec/
IvParameterSpec.java 87 System.arraycopy(iv, offset, this.iv, 0, len);
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/pooling/normal/
CircleStack.java 58 System.arraycopy(pool, index, container, 0, argNum);
62 System.arraycopy(pool, index, container, 0, argNum - overlap);
63 System.arraycopy(pool, 0, container, argNum - overlap, overlap);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/polynomials/
PolynomialFunctionNewtonForm.java 79 System.arraycopy(a, 0, this.a, 0, a.length);
80 System.arraycopy(c, 0, this.c, 0, c.length);
114 System.arraycopy(a, 0, out, 0, a.length);
127 System.arraycopy(c, 0, out, 0, c.length);
143 System.arraycopy(coefficients, 0, out, 0, coefficients.length);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
OFBBlockCipher.java 68 System.arraycopy(iv, 0, IV, IV.length - iv.length, iv.length);
76 System.arraycopy(iv, 0, IV, 0, IV.length);
152 System.arraycopy(IV, 0, ofbV, 0, IV.length);
172 System.arraycopy(ofbV, blockSize, ofbV, 0, ofbV.length - blockSize);
173 System.arraycopy(ofbOutV, 0, ofbV, ofbV.length - blockSize, blockSize);
CFBBlockCipher.java 74 System.arraycopy(iv, 0, IV, IV.length - iv.length, iv.length);
82 System.arraycopy(iv, 0, IV, 0, IV.length);
136 System.arraycopy(cfbV, blockSize, cfbV, 0, cfbV.length - blockSize);
137 System.arraycopy(inBuf, 0, cfbV, cfbV.length - blockSize, blockSize);
157 System.arraycopy(cfbV, blockSize, cfbV, 0, cfbV.length - blockSize);
158 System.arraycopy(inBuf, 0, cfbV, cfbV.length - blockSize, blockSize);
263 System.arraycopy(IV, 0, cfbV, 0, IV.length);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
ListGenerators.java 84 System.arraycopy(elements, 0, all, 0, elements.length);
85 System.arraycopy(suffix, 0, all, elements.length, suffix.length);
96 System.arraycopy(prefix, 0, all, 0, 2);
97 System.arraycopy(elements, 0, all, 2, elements.length);
110 System.arraycopy(prefix, 0, all, 0, 2);
111 System.arraycopy(elements, 0, all, 2, elements.length);
112 System.arraycopy(suffix, 0, all, 2 + elements.length, 2);

Completed in 837 milliseconds

12 3 4 5 6 7 8 91011>>