HomeSort by relevance Sort by last modified time
    Searched defs:arraycopy (Results 76 - 100 of 1254) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
RungeKuttaStepInterpolator.java 89 System.arraycopy(interpolator.yDotK[k], 0,
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/sampling/
DummyStepInterpolator.java 102 System.arraycopy(currentState, 0, interpolatedState, 0, currentState.length);
103 System.arraycopy(currentDerivative, 0, interpolatedDerivatives, 0, currentDerivative.length);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/
AbstractUnivariateStatistic.java 81 System.arraycopy(values, begin, storedData, 0, length);
  /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
DESedeKeySpecTest.java 133 System.arraycopy(key1, 2, exp, 0, 24);
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/
IntegerTest.java 75 System.arraycopy(array, 0, encoded, 2, encoded[1]);
  /external/apache-xml/src/main/java/org/apache/xml/utils/
IntStack.java 81 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
BERApplicationSpecific.java 63 System.arraycopy(data, lenBytes, tmp, 0, tmp.length);
BEROctetStringGenerator.java 72 System.arraycopy(b, off, _buf, _off, numToCopy);
94 System.arraycopy(_buf, 0, bytes, 0, _off);
DERApplicationSpecific.java 77 System.arraycopy(data, lenBytes, tmp, 0, tmp.length);
DERBitString.java 123 System.arraycopy(string, 0, bytes, 1, bytes.length - 1);
140 System.arraycopy(bytes, 1, data, 0, bytes.length - 1);
DLBitString.java 123 System.arraycopy(string, 0, bytes, 1, bytes.length - 1);
140 System.arraycopy(bytes, 1, data, 0, bytes.length - 1);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
NullDigest.java 37 System.arraycopy(res, 0, out, outOff, res.length);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
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);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dh/
KeyAgreementSpi.java 70 System.arraycopy(tmp, 1, rv, 0, rv.length);
78 System.arraycopy(tmp, 0, rv, rv.length - tmp.length, tmp.length);
  /external/caliper/examples/src/main/java/examples/
ArraySortBenchmark.java 45 System.arraycopy(values, 0, copy, 0, values.length);
  /external/conscrypt/src/main/java/org/conscrypt/
OpenSSLECDHKeyAgreement.java 80 System.arraycopy(buffer, 0, mResult, 0, mResult.length);
101 System.arraycopy(mResult, 0, sharedSecret, offset, mResult.length);
  /external/emma/core/java12/com/vladium/util/
ByteArrayIStream.java 72 System.arraycopy (mbuf, pos, buf, offset, length);
  /external/guava/guava/src/com/google/common/collect/
ImmutableList.java 212 System.arraycopy(others, 0, array, 12, others.length);
RegularImmutableList.java 57 System.arraycopy(array, offset, dst, dstOff, size);
RegularImmutableSet.java 73 System.arraycopy(elements, 0, dst, offset, elements.length);
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
UCharArrayIterator.java 70 System.arraycopy(text, start, fillIn, offset, len);
  /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/tools/misc/src/com/ibm/icu/dev/tool/layout/
Feature.java 31 System.arraycopy(lookupIndices, 0, newLookupIndices, 0, lookupIndices.length);
LookupList.java 29 System.arraycopy(lookups, 0, newLookups, 0, lookups.length);

Completed in 603 milliseconds

1 2 34 5 6 7 8 91011>>