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/
FirstOrderConverter.java 107 System.arraycopy(y, 0, z, 0, dimension);
108 System.arraycopy(y, dimension, zDot, 0, dimension);
114 System.arraycopy(zDot, 0, yDot, 0, dimension);
115 System.arraycopy(zDDot, 0, yDot, dimension, dimension);
  /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-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 102 System.arraycopy(b, off, _buf, _off, numToCopy);
124 System.arraycopy(_buf, 0, bytes, 0, _off);
DERApplicationSpecific.java 77 System.arraycopy(data, lenBytes, tmp, 0, tmp.length);
DERBitString.java 134 System.arraycopy(string, 0, bytes, 1, bytes.length - 1);
151 System.arraycopy(bytes, 1, data, 0, bytes.length - 1);
DLBitString.java 134 System.arraycopy(string, 0, bytes, 1, bytes.length - 1);
151 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/caliper/examples/src/main/java/examples/
ArraySortBenchmark.java 45 System.arraycopy(values, 0, copy, 0, values.length);
  /external/conscrypt/common/src/main/java/org/conscrypt/
OpenSSLECDHKeyAgreement.java 83 System.arraycopy(buffer, 0, mResult, 0, mResult.length);
104 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 79 System.arraycopy(text, start, fillIn, offset, len);
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
UVector32.java 34 System.arraycopy(buffer, index, buffer, index + 1, length - index);
46 System.arraycopy(buffer, 0, newBuffer, 0, length);
UVector64.java 34 System.arraycopy(buffer, index, buffer, index + 1, length - index);
46 System.arraycopy(buffer, 0, newBuffer, 0, length);
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
Feature.java 33 System.arraycopy(lookupIndices, 0, newLookupIndices, 0, lookupIndices.length);
LookupList.java 31 System.arraycopy(lookups, 0, newLookups, 0, lookups.length);
  /external/icu/tools/srcgen/src/main/java/com/android/icu4j/srcgen/
Icu4jBasicTransform.java 66 System.arraycopy(args, 0, inputDirNames, 0, args.length - 1);
Icu4jTestsTransform.java 66 System.arraycopy(args, 0, inputDirNames, 0, args.length - 1);

Completed in 1280 milliseconds

1 2 34 5 6 7 8 91011>>