| /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/ |
| ShortName.java | 81 System.arraycopy(nameArr, 0, result, 0, nameArr.length); 82 System.arraycopy(extArr, 0, result, 8, extArr.length); 92 System.arraycopy(name.toCharArray(), 0, result, 0, name.length()); 93 System.arraycopy(ext.toCharArray(), 0, result, 8, ext.length());
|
| /external/icu/android_icu4j/src/main/java/android/icu/impl/ |
| IntTrieBuilder.java | 48 System.arraycopy(table.m_data_, 0, m_data_, 0, m_dataLength_); 265 System.arraycopy(m_data_, 0, data, 0, m_dataLength_); 538 System.arraycopy(m_data_, Math.abs(indexValue), m_data_, newBlock, 675 System.arraycopy(index, 0xd800 >> SHIFT_, leadIndexes, 0, 737 System.arraycopy(index, c >> SHIFT_, index, indexLength, 762 System.arraycopy(index, BMP_INDEX_LENGTH_, index, 765 System.arraycopy(leadIndexes, 0, index, BMP_INDEX_LENGTH_,
|
| /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
| IntTrieBuilder.java | 46 System.arraycopy(table.m_data_, 0, m_data_, 0, m_dataLength_); 263 System.arraycopy(m_data_, 0, data, 0, m_dataLength_); 536 System.arraycopy(m_data_, Math.abs(indexValue), m_data_, newBlock, 673 System.arraycopy(index, 0xd800 >> SHIFT_, leadIndexes, 0, 735 System.arraycopy(index, c >> SHIFT_, index, indexLength, 760 System.arraycopy(index, BMP_INDEX_LENGTH_, index, 763 System.arraycopy(leadIndexes, 0, index, BMP_INDEX_LENGTH_,
|
| /frameworks/support/v7/recyclerview/src/android/support/v7/util/ |
| SortedList.java | 159 System.arraycopy(items, 0, copy, 0, items.length); 288 System.arraycopy(newData, newDataStart, mData, mMergedSize, itemCount); 298 System.arraycopy(mOldData, mOldDataStart, mData, mMergedSize, itemCount); 452 System.arraycopy(mData, index + 1, mData, index, mSize - index - 1); 650 System.arraycopy(mData, 0, newData, 0, index); 652 System.arraycopy(mData, index, newData, index + 1, mSize - index); 656 System.arraycopy(mData, index, mData, index + 1, mSize - index);
|
| /external/apache-xml/src/main/java/org/apache/xpath/ |
| NodeSet.java | 854 System.arraycopy(this.m_map, 0, clone.m_map, 0, this.m_map.length); 893 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); 927 System.arraycopy(m_map, 0, newMap, 0, ff + 1); 1021 System.arraycopy(m_map, 0, newMap, 0, m_firstFree); 1118 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); 1125 System.arraycopy(m_map, at, m_map, at + 1, m_firstFree - at); 1154 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + nNodes); 1159 System.arraycopy(nodes.m_map, 0, m_map, m_firstFree, nNodes); 1210 System.arraycopy(m_map, i + 1, m_map, i, m_firstFree - i - 1); [all...] |
| /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/ |
| DSAParametersGenerator.java | 145 System.arraycopy(seed, 0, part2, 0, seed.length); 179 System.arraycopy(part1, part1.length - remaining, w, 0, remaining); 290 System.arraycopy(output, output.length - remaining, w, 0, remaining); 363 System.arraycopy(seed, 0, U, 0, seed.length); 364 System.arraycopy(ggen, 0, U, seed.length, ggen.length);
|
| /libcore/ojluni/src/main/java/sun/security/util/ |
| DerInputBuffer.java | 70 System.arraycopy(buf, pos, retval, 0, len); 80 System.arraycopy(buf, startPos, result, 0, size); 157 System.arraycopy(buf, pos, bytes, 0, len); 206 System.arraycopy(buf, pos + 1, retval, 0, len - 1); 242 System.arraycopy(buf, pos + 1, bits, 0, len - 1);
|
| /packages/apps/TV/usbtuner/src/com/android/usbtuner/ |
| FileDataSource.java | 228 System.arraycopy(mPreBuffer, i, inputBuffer, destPos, TS_PACKET_SIZE); 290 System.arraycopy(mCircularBuffer, posInBuffer, buffer, offset, bytesToCopyInFirstPass); 292 System.arraycopy(mCircularBuffer, 0, buffer, offset + bytesToCopyInFirstPass, 384 System.arraycopy(dataBuffer, 0, mCircularBuffer, posInBuffer, 387 System.arraycopy(dataBuffer, bytesToCopyInFirstPass, mCircularBuffer, 0,
|
| /libcore/luni/src/main/java/java/util/concurrent/ |
| CopyOnWriteArrayList.java | 237 System.arraycopy(snapshot, 0, contents, 0, snapshot.length); 272 System.arraycopy(elements, 0, newElements, 0, elements.length); 280 System.arraycopy(elements, 0, newElements, 0, index); 282 System.arraycopy(elements, index, newElements, index + 1, elements.length - index); 293 System.arraycopy(elements, 0, newElements, 0, index); 294 System.arraycopy(toAdd, 0, newElements, index, toAdd.length); 295 System.arraycopy(elements, index, 313 System.arraycopy(elements, 0, newElements, 0, elements.length); 378 System.arraycopy(elements, 0, newElements, 0, newElements.length); 394 System.arraycopy(elements, 0, newElements, 0, newElements.length) [all...] |
| /libcore/ojluni/src/main/java/java/lang/ |
| System.java | 431 public static native void arraycopy(Object src, int srcPos, method in class:System 439 * (non-native) version of arraycopy() instead of the native 445 * The char[] specialized version of arraycopy(). 449 public static void arraycopy(char[] src, int srcPos, char[] dst, int dstPos, int length) { method in class:System 485 * arraycopy(). This assumes error checking has been done. 492 * (non-native) version of arraycopy() instead of the native 498 * The byte[] specialized version of arraycopy(). 502 public static void arraycopy(byte[] src, int srcPos, byte[] dst, int dstPos, int length) { method in class:System 538 * arraycopy(). This assumes error checking has been done. 545 * (non-native) version of arraycopy() instead of the nativ 555 public static void arraycopy(short[] src, int srcPos, short[] dst, int dstPos, int length) { method in class:System 608 public static void arraycopy(int[] src, int srcPos, int[] dst, int dstPos, int length) { method in class:System 661 public static void arraycopy(long[] src, int srcPos, long[] dst, int dstPos, int length) { method in class:System 714 public static void arraycopy(float[] src, int srcPos, float[] dst, int dstPos, int length) { method in class:System 767 public static void arraycopy(double[] src, int srcPos, double[] dst, int dstPos, int length) { method in class:System 820 public static void arraycopy(boolean[] src, int srcPos, boolean[] dst, int dstPos, int length) { method in class:System [all...] |
| /libcore/ojluni/src/main/java/java/util/ |
| Vector.java | 192 System.arraycopy(elementData, 0, anArray, 0, elementCount); 566 System.arraycopy(elementData, index + 1, elementData, index, j); 602 System.arraycopy(elementData, index, elementData, index + 1, elementCount - index); 722 System.arraycopy(elementData, 0, a, 0, elementCount); 836 System.arraycopy(elementData, index+1, elementData, index, [all...] |
| /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/ |
| ArrayFieldVector.java | 177 System.arraycopy(d, pos, data, 0, size); 219 System.arraycopy(v1.data, 0, data, 0, v1.data.length); 220 System.arraycopy(v2.data, 0, data, v1.data.length, v2.data.length); 231 System.arraycopy(v1.data, 0, data, 0, v1.data.length); 232 System.arraycopy(v2, 0, data, v1.data.length, v2.length); 243 System.arraycopy(v1, 0, data, 0, v1.length); 244 System.arraycopy(v2.data, 0, data, v1.length, v2.data.length); 263 System.arraycopy(v1, 0, data, 0, v1.length); 264 System.arraycopy(v2, 0, data, v1.length, v2.length); 285 System.arraycopy(v1, 0, data, 0, v1.length) [all...] |
| ArrayRealVector.java | 112 System.arraycopy(d, pos, data, 0, size); 178 System.arraycopy(v1.data, 0, data, 0, v1.data.length); 179 System.arraycopy(v2.data, 0, data, v1.data.length, v2.data.length); 191 System.arraycopy(v1.data, 0, data, 0, l1); 209 System.arraycopy(v2.data, 0, data, l1, l2); 221 System.arraycopy(v1.data, 0, data, 0, l1); 222 System.arraycopy(v2, 0, data, l1, l2); 234 System.arraycopy(v1, 0, data, 0, l1); 235 System.arraycopy(v2.data, 0, data, l1, l2); 247 System.arraycopy(v1, 0, data, 0, l1) [all...] |
| /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/ |
| DB_Results.java | 299 System.arraycopy(this.times, 0, this.times = new long[this.depth+10], 0, this.depth); 300 System.arraycopy(this.buffers, 0, this.buffers= new StringBuffer[this.depth+10], 0, this.depth); 431 System.arraycopy(BUILDS, 0, builds, 0, BUILDS_LENGTH); 472 System.arraycopy(KNOWN_COMPONENTS, 0, KNOWN_COMPONENTS = new String[length+1], 0, length); 486 System.arraycopy(COMPONENTS, 0, components, 0, length); 509 System.arraycopy(CONFIGS, 0, configs, 0, length); 549 System.arraycopy(CONFIG_DESCRIPTIONS, 0, descriptions, 0, length); 971 System.arraycopy(comments, 0, comments = new String[commentID+10], 0, length); [all...] |
| /external/libgdx/gdx/src/com/badlogic/gdx/utils/ |
| StringBuilder.java | 89 System.arraycopy(builder.chars, 0, chars, 0, length);
106 System.arraycopy(chars, 0, newData, 0, length);
126 System.arraycopy(value, 0, chars, length, value.length);
143 System.arraycopy(value, offset, chars, this.length, length);
210 if (count >= 0) System.arraycopy(chars, end, chars, start, count);
224 System.arraycopy(chars, location + 1, chars, location, count);
255 System.arraycopy(chars, start, dest, destStart, end - start);
264 System.arraycopy(value, 0, value, index, value.length);
275 System.arraycopy(value, start, chars, index, length);
330 System.arraycopy(chars, index, chars, index + size, length - index); // index == count case is no-op [all...] |
| Queue.java | 120 System.arraycopy(values, head, newArray, 0, tail - head); 124 System.arraycopy(values, head, newArray, 0, rest); 125 System.arraycopy(values, 0, newArray, rest, tail); 229 System.arraycopy(values, index + 1, values, index, tail - index); 235 System.arraycopy(values, index + 1, values, index, tail - index); 239 System.arraycopy(values, head, values, head + 1, index - head);
|
| /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/ |
| TestCertUtils.java | 457 System.arraycopy(asubj, 0, data, 0, asubj.length); 460 .arraycopy(aissuer, 0, data, asubj.length + 1, method 614 System.arraycopy(data, 0, tmp, 0, data.length); 615 System.arraycopy(chunk, 0, tmp, data.length, len); 626 System.arraycopy(data, 0, subjNameData, 0, subjNameData.length); 628 System.arraycopy(data, pos + 1, issNameData, 0, issNameData.length);
|
| /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/ |
| SSLServerSocketImplTest.java | 348 System.arraycopy(supported, 0, 400 System.arraycopy(supported, 0, 402 System.arraycopy(supported, i, 463 System.arraycopy(supported, i, 519 System.arraycopy(supported, 0, 521 System.arraycopy(supported, i,
|
| /external/protobuf/java/src/main/java/com/google/protobuf/micro/ |
| CodedInputStreamMicro.java | 678 System.arraycopy(buffer, bufferPos, bytes, 0, size); 688 System.arraycopy(buffer, bufferPos, bytes, 0, pos); 697 System.arraycopy(buffer, 0, bytes, pos, bufferSize); 703 System.arraycopy(buffer, 0, bytes, pos, size - pos); 753 System.arraycopy(buffer, originalBufferPos, bytes, 0, pos); 758 System.arraycopy(chunk, 0, bytes, pos, chunk.length);
|
| /libcore/support/src/test/java/org/apache/harmony/security/tests/support/ |
| TestCertUtils.java | 465 System.arraycopy(asubj, 0, data, 0, asubj.length); 468 .arraycopy(aissuer, 0, data, asubj.length + 1, method 623 System.arraycopy(data, 0, tmp, 0, data.length); 624 System.arraycopy(chunk, 0, tmp, data.length, len); 635 System.arraycopy(data, 0, subjNameData, 0, subjNameData.length); 637 System.arraycopy(data, pos + 1, issNameData, 0, issNameData.length);
|
| /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/ |
| Util.java | 53 System.arraycopy(data, 0, result, 0, length); 55 System.arraycopy(data, 0, result, 0, data.length);
|
| /dalvik/dexgen/src/com/android/dexgen/util/ |
| ByteArray.java | 212 System.arraycopy(bytes, start, out, offset, size); 324 System.arraycopy(bytes, cursor + start, arr, offset, length);
|
| /dalvik/dx/src/com/android/dx/cf/code/ |
| ExecutionStack.java | 68 System.arraycopy(stack, 0, result.stack, 0, stack.length); 69 System.arraycopy(local, 0, result.local, 0, local.length);
|
| /dalvik/dx/src/com/android/dx/util/ |
| ByteArray.java | 212 System.arraycopy(bytes, start, out, offset, size); 324 System.arraycopy(bytes, cursor + start, arr, offset, length);
|
| /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/ |
| AdamsBashforthIntegrator.java | 201 System.arraycopy(y0, 0, y, 0, n); 259 System.arraycopy(interpolator.getInterpolatedState(), 0, y, 0, y0.length);
|