HomeSort by relevance Sort by last modified time
    Searched refs:arraycopy (Results 301 - 325 of 1421) sorted by null

<<11121314151617181920>>

  /libcore/ojluni/src/main/java/java/security/
SignatureSpi.java 237 System.arraycopy(sig, 0, outbuf, offset, sig.length);
278 System.arraycopy(sigBytes, offset, sigBytesCopy, 0, length);
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
CharEscaper.java 158 System.arraycopy(r, 0, dest, destIndex, rlen);
203 System.arraycopy(dest, 0, copy, 0, index);
  /libcore/ojluni/src/main/java/java/util/
ArrayDeque.java 159 System.arraycopy(elements, p, a, 0, r);
160 System.arraycopy(elements, 0, a, r, p);
535 System.arraycopy(elements, h, elements, h + 1, front);
537 System.arraycopy(elements, 0, elements, 1, i);
539 System.arraycopy(elements, h, elements, h + 1, mask - h);
546 System.arraycopy(elements, i + 1, elements, i, back);
549 System.arraycopy(elements, i + 1, elements, i, mask - i);
551 System.arraycopy(elements, 1, elements, 0, t);
771 System.arraycopy(elements, 0, a, elements.length - head, tail);
823 System.arraycopy(elements, head, a, 0, firstLeg)
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/tech/
MifareUltralightTagTester.java 58 System.arraycopy(onePage, 0, fourPages, i * onePage.length, onePage.length);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/interpolation/
DividedDifferenceInterpolator.java 71 System.arraycopy(x, 0, c, 0, c.length);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
EmbeddedRungeKuttaIntegrator.java 205 System.arraycopy(y0, 0, y, 0, y0.length);
302 System.arraycopy(yTmp, 0, y, 0, y0.length);
303 System.arraycopy(yDotK[stages - 1], 0, yDotTmp, 0, y0.length);
313 System.arraycopy(yDotTmp, 0, yDotK[0], 0, y0.length);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
Packet.java 104 System.arraycopy(p, HEADER_SIZE, data, 0, p.length - HEADER_SIZE);
231 System.arraycopy(data_temp, 0, data, 0, new_data_size - BYTE_SIZE);
257 System.arraycopy(data_temp, 0, data, 0, old_data_size);
288 System.arraycopy(data_temp, 0, data, 0, new_data_size
319 System.arraycopy(data_temp, 0, data, 0, new_data_size
351 System.arraycopy(data_temp, 0, data, 0, new_data_size
385 System.arraycopy(data_temp, 0, data, 0, new_data_size
418 System.arraycopy(data_temp, 0, data, 0, new_data_size
449 System.arraycopy(data_temp, 0, data, 0, new_data_size
487 System.arraycopy(data_temp, 0, data, 0, new_data_siz
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
ExceptionCaughtDebuggee.java 119 * {@link System#arraycopy(Object, int, Object, int, int)}.
122 System.arraycopy((Object) null, 0, (Object) null, 0, 0);
  /external/apache-http/src/org/apache/commons/codec/binary/
Base64.java 308 System.arraycopy(
359 System.arraycopy(
464 System.arraycopy(groomedData, 0, packedData, 0, bytesCopied);
490 System.arraycopy(groomedData, 0, packedData, 0, bytesCopied);
  /external/apache-xml/src/main/java/org/apache/xml/utils/
ObjectStack.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);
DERApplicationSpecific.java 77 System.arraycopy(data, lenBytes, tmp, 0, tmp.length);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/
OpenSSLPBEParametersGenerator.java 64 System.arraycopy(buf, 0, key, offset, len);
  /external/caliper/examples/src/main/java/examples/
ArraySortBenchmark.java 45 System.arraycopy(values, 0, copy, 0, values.length);
  /external/emma/core/java12/com/vladium/util/
ByteArrayIStream.java 72 System.arraycopy (mbuf, pos, buf, offset, length);
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
RecyclableBufferedInputStream.java 155 System.arraycopy(localBuf, 0, newbuf, 0, localBuf.length);
160 System.arraycopy(localBuf, markpos, localBuf, 0, localBuf.length
288 System.arraycopy(localBuf, pos, buffer, offset, copylength);
321 System.arraycopy(localBuf, pos, buffer, offset, read);
  /external/guava/guava/src/com/google/common/collect/
RegularImmutableSet.java 73 System.arraycopy(elements, 0, dst, offset, elements.length);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
TestMapEntrySetGenerator.java 50 System.arraycopy(elements, 0, entries, 0, elements.length);
  /external/guava/guava-tests/benchmark/com/google/common/base/
CharMatcherBenchmark.java     [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
UCharArrayIterator.java 70 System.arraycopy(text, start, fillIn, offset, len);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
UCharArrayIterator.java 68 System.arraycopy(text, start, fillIn, offset, len);
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
FeatureList.java 31 System.arraycopy(features, 0, newFeatures, 0, features.length);
Lookup.java 62 System.arraycopy(subtables, 0, newSubtables, 0, subtables.length);
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/java/io/
ByteArrayInputStream.java 59 System.arraycopy(buf, pos, b, off, len);
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/java/nio/
CharArrayBuffer.java 69 System.arraycopy(backingArray, offset + position, dest, off, len);

Completed in 1704 milliseconds

<<11121314151617181920>>