/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);
|
/libcore/crypto/src/main/java/org/conscrypt/ |
PRF.java | 88 System.arraycopy(digest, 0, out, pos, out.length - pos); 91 System.arraycopy(digest, 0, out, pos, 16); 118 System.arraycopy(str_byts, 0, tmp_seed, 0, str_byts.length); 119 System.arraycopy(seed, 0, tmp_seed, str_byts.length, seed.length); 166 System.arraycopy(md5_mac.doFinal(), 0, out,
|
/art/test/096-array-copy-concurrent-gc/src/ |
Main.java | 18 * Running concurrent gc and doing some System.arraycopy 64 System.arraycopy(array, 0, array, 1, array.length - 1); 74 System.arraycopy(array, 1, array, 0, array.length - 1);
|
/dalvik/tests/096-array-copy-concurrent-gc/src/ |
Main.java | 18 * Running concurrent gc and doing some System.arraycopy 64 System.arraycopy(array, 0, array, 1, array.length - 1); 74 System.arraycopy(array, 1, array, 0, array.length - 1);
|
/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/guava/guava/src/com/google/common/collect/ |
Platform.java | 40 * Wrapper around {@link System#arraycopy} so that it can be emulated 46 * <p>As of GWT 2.0, The built-in {@link System#arraycopy} doesn't work 53 System.arraycopy(src, srcPos, dest, destPos, length);
|
/frameworks/base/obex/javax/obex/ |
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/java/nio/ |
CharArrayBuffer.java | 58 System.arraycopy(backingArray, position + arrayOffset, backingArray, arrayOffset, remaining()); 114 System.arraycopy(backingArray, arrayOffset + position, dst, srcOffset, charCount); 162 System.arraycopy(src, srcOffset, backingArray, arrayOffset + position, charCount);
|
DoubleArrayBuffer.java | 58 System.arraycopy(backingArray, position + arrayOffset, backingArray, arrayOffset, remaining()); 114 System.arraycopy(backingArray, arrayOffset + position, dst, dstOffset, doubleCount); 154 System.arraycopy(src, srcOffset, backingArray, arrayOffset + position, doubleCount);
|
FloatArrayBuffer.java | 59 System.arraycopy(backingArray, position + arrayOffset, backingArray, arrayOffset, remaining()); 115 System.arraycopy(backingArray, arrayOffset + position, dst, dstOffset, floatCount); 155 System.arraycopy(src, srcOffset, backingArray, arrayOffset + position, floatCount);
|
IntArrayBuffer.java | 58 System.arraycopy(backingArray, position + arrayOffset, backingArray, arrayOffset, remaining()); 114 System.arraycopy(backingArray, arrayOffset + position, dst, dstOffset, intCount); 154 System.arraycopy(src, srcOffset, backingArray, arrayOffset + position, intCount);
|
LongArrayBuffer.java | 58 System.arraycopy(backingArray, position + arrayOffset, backingArray, arrayOffset, remaining()); 114 System.arraycopy(backingArray, arrayOffset + position, dst, dstOffset, longCount); 154 System.arraycopy(src, srcOffset, backingArray, arrayOffset + position, longCount);
|
ShortArrayBuffer.java | 58 System.arraycopy(backingArray, position + arrayOffset, backingArray, arrayOffset, remaining()); 114 System.arraycopy(backingArray, arrayOffset + position, dst, dstOffset, shortCount); 154 System.arraycopy(src, srcOffset, backingArray, arrayOffset + position, shortCount);
|
/libcore/luni/src/main/java/java/security/cert/ |
PolicyQualifierInfo.java | 56 System.arraycopy(encoded, 0, this.encoded, 0, this.encoded.length); 72 System.arraycopy(encoded, 0, ret, 0, encoded.length); 97 System.arraycopy(policyQualifier, 0, ret, 0, policyQualifier.length);
|
/libcore/luni/src/main/java/javax/crypto/spec/ |
DESedeKeySpec.java | 54 System.arraycopy(key, 0, this.key, 0, DES_EDE_KEY_LEN); 80 System.arraycopy(key, offset, this.key, 0, DES_EDE_KEY_LEN); 90 System.arraycopy(this.key, 0, result, 0, DES_EDE_KEY_LEN);
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/ |
ResizableIntArray.java | 108 System.arraycopy(ip.mArray, 0, mArray, 0, ip.mLength); 119 System.arraycopy(src.mArray, startPos, mArray, currentLength, length); 140 System.arraycopy(mArray, elementCount, mArray, 0, mLength - elementCount);
|
/external/jmonkeyengine/engine/src/desktop/com/jme3/texture/plugins/ |
AWTLoader.java | 85 System.arraycopy(img, y1 * scSz, sln, 0, scSz); 86 System.arraycopy(img, y2 * scSz, img, y1 * scSz, scSz); 87 System.arraycopy(sln, 0, img, y2 * scSz, scSz); 98 System.arraycopy(img, y1 * scSz, sln, 0, scSz); 99 System.arraycopy(img, y2 * scSz, img, y1 * scSz, scSz); 100 System.arraycopy(sln, 0, img, y2 * scSz, scSz);
|
/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);
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
IntVector.java | 97 System.arraycopy(v.m_map, 0, m_map, 0, m_firstFree); 135 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); 159 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); 185 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); 212 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); 219 System.arraycopy(m_map, at, m_map, at + 1, m_firstFree - at); 263 System.arraycopy(m_map, i + 1, m_map, i - 1, m_firstFree - i); 288 System.arraycopy(m_map, i + 1, m_map, i, m_firstFree);
|
/external/apache-xml/src/main/java/org/apache/xpath/compiler/ |
OpMapVector.java | 91 System.arraycopy(m_map, 0, newMap, 0, oldSize); 109 System.arraycopy(m_map, 0, newMap, 0, m_map[m_lengthPos]);
|
/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);
|
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/ |
KeyMaterial.java | 46 System.arraycopy(tmp[0], 0, res, off, produced); 62 System.arraycopy(tmp[i], 0, res, off, produced);
|