| /libcore/luni/src/test/java/libcore/java/util/zip/ |
| GZIPInputStreamTest.java | 106 System.arraycopy(HELLO_WORLD_GZIPPED, 0, data, 0, length); 107 System.arraycopy(HELLO_WORLD_GZIPPED, 0, data, length, length); 117 System.arraycopy(HELLO_WORLD_GZIPPED, 0, data, 0, length); 132 System.arraycopy(HELLO_WORLD_GZIPPED, 0, data, 0, length); 133 System.arraycopy(HELLO_WORLD_GZIPPED, 0, data, length, 10); 142 System.arraycopy(HELLO_WORLD_GZIPPED, 0, data, 0, length); 143 System.arraycopy(HELLO_WORLD_GZIPPED, 0, data, length, length - 4);
|
| /external/apache-xml/src/main/java/org/apache/xml/utils/ |
| NodeVector.java | 95 System.arraycopy(this.m_map, 0, clone.m_map, 0, this.m_map.length); 132 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); 166 System.arraycopy(m_map, 0, newMap, 0, ff + 1); 260 System.arraycopy(m_map, 0, newMap, 0, m_firstFree); 376 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); 383 System.arraycopy(m_map, at, m_map, at + 1, m_firstFree - at); 412 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + nNodes); 417 System.arraycopy(nodes.m_map, 0, m_map, m_firstFree, nNodes); 478 System.arraycopy(m_map, i + 1, m_map, i - 1, m_firstFree - i); 506 System.arraycopy(m_map, i + 1, m_map, i - 1, m_firstFree - i) [all...] |
| /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/ |
| DESedeWrapEngine.java | 148 System.arraycopy(in, inOff, keyToBeWrapped, 0, inLen); 156 System.arraycopy(keyToBeWrapped, 0, WKCKS, 0, keyToBeWrapped.length); 157 System.arraycopy(CKS, 0, WKCKS, keyToBeWrapped.length, CKS.length); 181 System.arraycopy(this.iv, 0, TEMP2, 0, this.iv.length); 182 System.arraycopy(TEMP1, 0, TEMP2, this.iv.length, TEMP1.length); 267 System.arraycopy(TEMP2, 0, this.iv, 0, 8); 268 System.arraycopy(TEMP2, 8, TEMP1, 0, TEMP2.length - 8); 288 System.arraycopy(WKCKS, 0, result, 0, WKCKS.length - 8); 289 System.arraycopy(WKCKS, WKCKS.length - 8, CKStoBeVerified, 0, 8); 325 System.arraycopy(digest, 0, result, 0, 8) [all...] |
| DESedeEngine.java | 56 System.arraycopy(keyMaster, 0, key1, 0, key1.length); 60 System.arraycopy(keyMaster, 8, key2, 0, key2.length); 66 System.arraycopy(keyMaster, 16, key3, 0, key3.length);
|
| /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...] |
| /external/guava/guava/src/com/google/common/collect/ |
| ObjectArrays.java | 74 System.arraycopy(first, 0, result, 0, first.length); 75 System.arraycopy(second, 0, result, first.length, second.length); 91 System.arraycopy(array, 0, result, 1, array.length); 113 System.arraycopy( 172 System.arraycopy(src, offset, dst, 0, len); 204 System.arraycopy(elements, offset, result, 0, length);
|
| /external/proguard/src/proguard/classfile/editor/ |
| ClassEditor.java | 61 System.arraycopy(interfaces, 0, 87 System.arraycopy(interfaces, interfaceIndex+1, 129 System.arraycopy(fields, 0, 157 System.arraycopy(fields, fieldIndex+1, 199 System.arraycopy(methods, 0, 227 System.arraycopy(methods, methodIndex+1,
|
| /external/sl4a/ScriptingLayerForAndroid/src/de/mud/terminal/ |
| VDUBuffer.java | 222 System.arraycopy(charArray[screenBase + l], c, charArray[screenBase + l], c + 1, width - c - 1); 223 System.arraycopy(charAttributes[screenBase + l], c, charAttributes[screenBase + l], c + 1, 242 System.arraycopy(charArray[screenBase + l], c + 1, charArray[screenBase + l], c, width - c 244 System.arraycopy(charAttributes[screenBase + l], c + 1, charAttributes[screenBase + l], c, 397 System.arraycopy(charArray, oldBase + l, cbuf, 0, bottom - l - (n - 1)); 398 System.arraycopy(charAttributes, oldBase + l, abuf, 0, bottom - l - (n - 1)); 399 System.arraycopy(cbuf, 0, charArray, oldBase + l + n, bottom - l - (n - 1)); 400 System.arraycopy(abuf, 0, charAttributes, oldBase + l + n, bottom - l - (n - 1)); 432 System.arraycopy(charArray, offset, cbuf, 0, oldBase - offset); 433 System.arraycopy(charAttributes, offset, abuf, 0, oldBase - offset) 450 .arraycopy(charArray, oldBase + top + n, cbuf, newScreenBase + top, l - top - (n - 1)); method [all...] |
| /packages/apps/UnifiedEmail/src/com/android/mail/utils/ |
| SparseLongArray.java | 101 System.arraycopy(mKeys, index + 1, mKeys, index, mSize - (index + 1)); 102 System.arraycopy(mValues, index + 1, mValues, index, mSize - (index + 1)); 124 System.arraycopy(mKeys, i, mKeys, i + 1, mSize - i); 125 System.arraycopy(mValues, i, mValues, i + 1, mSize - i); 218 System.arraycopy(mKeys, 0, nkeys, 0, mKeys.length); 219 System.arraycopy(mValues, 0, nvalues, 0, mValues.length);
|
| /dalvik/dx/tests/087-ssa-local-vars/ |
| Blort.java | 21 System.arraycopy(stringArray, 0, objectArray, 0, stringArray.length); 23 System.arraycopy(objectArray, 0, stringArray, 0, stringArray.length); 27 System.arraycopy(objectArray, 0, stringArray, 0,stringArray.length);
|
| /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/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/ |
| GeneralDigest.java | 41 System.arraycopy(encodedState, 0, xBuf, 0, xBuf.length); 48 System.arraycopy(t.xBuf, 0, xBuf, 0, t.xBuf.length); 145 System.arraycopy(xBuf, 0, state, 0, xBufOff);
|
| NullDigest.java | 37 System.arraycopy(res, 0, out, outOff, res.length);
|
| /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/ |
| BigIntegers.java | 29 System.arraycopy(bytes, 1, tmp, 0, tmp.length); 60 System.arraycopy(bytes, start, tmp, tmp.length - count, count); 117 System.arraycopy(buf, off, mag, 0, length);
|
| /packages/apps/TV/usbtuner/src/com/android/usbtuner/util/ |
| ByteArrayBuffer.java | 52 System.arraycopy(this.buffer, 0, newbuffer, 0, this.len); 71 System.arraycopy(b, off, this.buffer, this.len, len); 113 System.arraycopy(this.buffer, 0, b, 0, this.len);
|
| /art/tools/dexfuzz/src/dexfuzz/program/ |
| MSwitchInsn.java | 47 System.arraycopy(keys, 0, newInsn.keys, 0, keys.length);
|
| /cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/hce/ |
| DualNonPaymentPrefixEmulatorActivity.java | 46 System.arraycopy(PrefixTransportService1.APDU_COMMAND_SEQUENCE, 0, commandSequences, 0, 48 System.arraycopy(PrefixAccessService.APDU_COMMAND_SEQUENCE, 0, commandSequences, 54 System.arraycopy(PrefixTransportService1.APDU_RESPOND_SEQUENCE, 0, responseSequences, 0, 56 System.arraycopy(PrefixAccessService.APDU_RESPOND_SEQUENCE, 0, responseSequences,
|
| /cts/tools/vm-tests-tf/src/util/build/ |
| JackBuildDalvikSuite.java | 31 System.arraycopy(args, 1, remainingArgs, 0, remainingArgs.length);
|
| /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/ |
| IntArray.java | 83 System.arraycopy(data, 0, newData, 0, data.length);
|
| /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/polynomials/ |
| PolynomialSplineFunction.java | 116 System.arraycopy(knots, 0, this.knots, 0, n + 1); 118 System.arraycopy(polynomials, 0, this.polynomials, 0, n); 190 System.arraycopy(polynomials, 0, p, 0, n); 204 System.arraycopy(knots, 0, out, 0, n + 1);
|
| /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/ |
| EulerStepInterpolator.java | 87 System.arraycopy(yDotK[0], 0, interpolatedDerivatives, 0, interpolatedDerivatives.length);
|
| /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/ |
| CBCBlockCipher.java | 78 System.arraycopy(iv, 0, IV, 0, iv.length); 157 System.arraycopy(IV, 0, cbcV, 0, IV.length); 201 System.arraycopy(out, outOff, cbcV, 0, cbcV.length); 230 System.arraycopy(in, inOff, cbcNextV, 0, blockSize);
|
| /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/ |
| ParametersWithIV.java | 27 System.arraycopy(iv, ivOff, this.iv, 0, ivLen);
|
| /external/guava/guava-tests/benchmark/com/google/common/base/ |
| StringsRepeatBenchmark.java | 75 System.arraycopy(strCopy, 0, array, pos,strCopyLen); 80 System.arraycopy(strCopy, 0, strCopy, strCopyLen, strCopyLen); 106 System.arraycopy(array, 0, array, n, n); 108 System.arraycopy(array, 0, array, n, size - n);
|
| /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/particle/ |
| StackQueue.java | 22 System.arraycopy(m_buffer, m_front, m_buffer, 0, m_back - m_front);
|