HomeSort by relevance Sort by last modified time
    Searched refs:arraycopy (Results 151 - 175 of 937) sorted by null

1 2 3 4 5 67 8 91011>>

  /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/crypto/engines/
RSACoreEngine.java 105 System.arraycopy(in, inOff, block, 0, inLen);
132 System.arraycopy(output, 1, tmp, 0, tmp.length);
141 System.arraycopy(output, 0, tmp, tmp.length - output.length, output.length);
152 System.arraycopy(output, 1, tmp, 0, tmp.length);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/
PKCS12ParametersGenerator.java 123 System.arraycopy(S, 0, I, 0, S.length);
124 System.arraycopy(P, 0, I, S.length, P.length);
153 System.arraycopy(A, 0, dKey, (i - 1) * u, dKey.length - ((i - 1) * u));
157 System.arraycopy(A, 0, dKey, (i - 1) * u, A.length);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/gcm/
Tables1kGCMExponentiator.java 39 System.arraycopy(y, 0, output, 0, 16);
  /external/chromium_org/third_party/protobuf/java/src/test/java/com/google/protobuf/
BoundedByteStringTest.java 52 System.arraycopy(sourceBytes, from, referenceBytes, 0, to - from);
  /external/emma/core/java12/
emma.java 37 System.arraycopy (args, 1, commandArgs, 0, commandArgs.length);
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/cipher/
CTRMode.java 40 System.arraycopy(iv, 0, X, 0, blockSize);
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/
PacketChannelWindowAdjust.java 31 System.arraycopy(payload, off, this.payload, 0, len);
PacketIgnore.java 34 System.arraycopy(payload, off, this.payload, 0, len);
PacketKexDHReply.java 28 System.arraycopy(payload, off, this.payload, 0, len);
PacketKexDhGexGroup.java 27 System.arraycopy(payload, off, this.payload, 0, len);
PacketKexDhGexReply.java 28 System.arraycopy(payload, off, this.payload, 0, len);
PacketServiceAccept.java 29 System.arraycopy(payload, off, this.payload, 0, len);
PacketServiceRequest.java 29 System.arraycopy(payload, off, this.payload, 0, len);
PacketUserauthBanner.java 36 System.arraycopy(payload, off, this.payload, 0, len);
PacketUserauthFailure.java 31 System.arraycopy(payload, off, this.payload, 0, len);
TypesWriter.java 32 System.arraycopy(arr, 0, new_arr, 0, arr.length);
44 System.arraycopy(arr, 0, dst, 0, pos);
50 System.arraycopy(arr, 0, dst, 0, pos);
127 System.arraycopy(buff, off, arr, pos, len);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
Platform.java 54 * Wrapper around {@link System#arraycopy} so that it can be emulated
60 * <p>As of GWT 2.0, The built-in {@link System#arraycopy} doesn't work
67 System.arraycopy(src, srcPos, dest, destPos, length);
  /external/javassist/src/main/javassist/bytecode/
LongVector.java 53 System.arraycopy(objects, 0, newObj, 0, len);
  /external/proguard/src/proguard/classfile/visitor/
MultiClassPoolVisitor.java 71 System.arraycopy(classPoolVisitors, 0,
MultiClassVisitor.java 71 System.arraycopy(classVisitors, 0,
  /external/smack/src/org/jivesoftware/smackx/bytestreams/socks5/
Socks5Utils.java 66 System.arraycopy(header, 0, response, 0, header.length);
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
DashPathEffect_Delegate.java 85 System.arraycopy(intervals, 0, mIntervals, 0, intervals.length);
  /libcore/benchmarks/src/benchmarks/
ArrayCopyBenchmark.java 40 System.arraycopy(src, 0, dst, 0, 8192);
  /libcore/luni/src/main/java/java/io/
PipedReader.java 264 System.arraycopy(this.buffer, out, buffer, offset, copyLength);
287 System.arraycopy(this.buffer, out, buffer, offset + charsCopied, copyLength);
420 System.arraycopy(chars, offset, buffer, in, length);
433 System.arraycopy(chars, offset, buffer, in, length);

Completed in 884 milliseconds

1 2 3 4 5 67 8 91011>>