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

1 2 3 4 5 6 7 8 91011>>

  /art/test/537-checker-arraycopy/src/
Main.java 20 arraycopy(); method
22 arraycopy(new Object()); method
28 arraycopy(null);
35 arraycopy(new Object[1]); method
41 arraycopy(new Object[2]); method
42 arraycopy(new Object[2], 0); method
45 arraycopy(new Object[1], 1); method
52 /// CHECK-START-X86_64: void Main.arraycopy() disassembly (after)
59 public static void arraycopy() { method in class:Main
61 System.arraycopy(obj, 1, obj, 0, 1)
64 public static void arraycopy(Object obj) { method in class:Main
73 public static void arraycopy(Object[] obj, int pos) { method in class:Main
    [all...]
  /art/test/646-checker-arraycopy-large-cst-pos/src/
Main.java 24 /// CHECK: InvokeStaticOrDirect method_name:java.lang.System.arraycopy intrinsic:SystemArrayCopy
33 // System.arraycopy to be intrinsified.
34 System.arraycopy(src, 0, dst, 1024, 64);
  /art/test/096-array-copy-concurrent-gc/src/
Main.java 18 * Running concurrent gc and doing some System.arraycopy
64 System.arraycopy(array, 0, array, 1, array.length - 1);
74 System.arraycopy(array, 1, array, 0, array.length - 1);
  /art/test/641-checker-arraycopy/src/
Main.java 19 // Note that this is testing we haven't intrinsified the byte[] arraycopy version.
23 /// CHECK: InvokeStaticOrDirect method_name:java.lang.System.arraycopy intrinsic:SystemArrayCopy
25 /// CHECK: InvokeStaticOrDirect method_name:java.lang.System.arraycopy intrinsic:SystemArrayCopy
29 System.arraycopy(o, 1, o, 0, 1);
30 System.arraycopy(foo, 1, foo, 0, 1);
34 System.arraycopy(o, 1, o, 0, 1);
35 System.arraycopy(foo, 1, foo, 0, 1);
41 /// CHECK: InvokeStaticOrDirect method_name:java.lang.System.arraycopy intrinsic:SystemArrayCopy
43 /// CHECK: InvokeStaticOrDirect method_name:java.lang.System.arraycopy intrinsic:SystemArrayCopy
  /art/tools/dexfuzz/src/dexfuzz/program/
MSwitchInsn.java 47 System.arraycopy(keys, 0, newInsn.keys, 0, keys.length);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
JSystem.cs 60 public static void arraycopy<T>( T[] sourceArray, int sourceIndex, T[] destinationArray, int destinationIndex, int length ) method in class:Antlr.Runtime.JavaExtensions.JSystem
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
JSystem.cs 59 public static void arraycopy<T>( T[] sourceArray, int sourceIndex, T[] destinationArray, int destinationIndex, int length ) method in class:Antlr.Runtime.JavaExtensions.JSystem
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/
X9IntegerConverter.java 55 System.arraycopy(bytes, bytes.length - tmp.length, tmp, 0, tmp.length);
63 System.arraycopy(bytes, 0, tmp, tmp.length - bytes.length, bytes.length);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
KeyParameter.java 23 System.arraycopy(key, keyOff, this.key, 0, keyLen);
  /external/proguard/src/proguard/classfile/editor/
AnnotationsAttributeEditor.java 58 System.arraycopy(annotations, 0,
ExceptionsAttributeEditor.java 59 System.arraycopy(exceptionIndexTable, 0,
LineNumberTableAttributeEditor.java 58 System.arraycopy(lineNumberTable, 0,
  /frameworks/base/obex/javax/obex/
PasswordAuthentication.java 56 System.arraycopy(userName, 0, mUserName, 0, userName.length);
60 System.arraycopy(password, 0, mPassword, 0, password.length);
  /frameworks/support/compat/java/android/support/v4/database/
DatabaseUtilsCompat.java 54 System.arraycopy(originalValues, 0, result, 0, originalValues.length);
55 System.arraycopy(newValues, 0, result, originalValues.length, newValues.length);
  /libcore/benchmarks/src/benchmarks/
ArrayCopyBenchmark.java 36 System.arraycopy(src, 0, dst, 0, 8192);
  /libcore/ojluni/src/main/java/javax/crypto/spec/
DESedeKeySpec.java 88 System.arraycopy(key, offset, this.key, 0, 24);
IvParameterSpec.java 87 System.arraycopy(iv, offset, this.iv, 0, len);
  /art/test/028-array-write/src/
Main.java 59 System.arraycopy(mStorage, 0, mStorage,
65 System.arraycopy(mStorage, 0, mStorage,
  /art/test/610-arraycopy/src/
Main.java 39 System.arraycopy(a, 0, b, 1, 3);
  /cts/tools/vm-tests-tf/src/util/build/
JackBuildDalvikSuite.java 31 System.arraycopy(args, 1, remainingArgs, 0, remainingArgs.length);
  /dalvik/dx/src/com/android/dx/io/instructions/
ShortArrayCodeOutput.java 52 System.arraycopy(array, 0, result, 0, cursor);
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
ANTLRReaderStream.java 79 System.arraycopy(data, 0, newdata, 0, data.length);
  /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/apache-xml/src/main/java/org/apache/xpath/compiler/
OpMapVector.java 91 System.arraycopy(m_map, 0, newMap, 0, oldSize);
109 System.arraycopy(m_map, 0, newMap, 0, m_map[m_lengthPos]);
  /external/autotest/frontend/client/src/autotest/common/table/
JSONObjectComparator.java 14 System.arraycopy(specs, 0, sortSpecs, 0, specs.length);

Completed in 1978 milliseconds

1 2 3 4 5 6 7 8 91011>>