HomeSort by relevance Sort by last modified time
    Searched refs:arraycopy (Results 1 - 25 of 1421) 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
68 public static void arraycopy(Object[] obj, int pos) { method in class:Main
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/websocket/
FixedMaskGen.java 37 System.arraycopy(mask, 0, _mask, 0, 4);
42 System.arraycopy(_mask, 0, mask, 0, 4);
  /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);
ObexSession.java 88 System.arraycopy(description, 1, realmString, 0, realmString.length);
163 System.arraycopy(userName, 0, header.mAuthResp, 38, userName.length);
170 System.arraycopy(challenge, 0, digest, 0, challenge.length);
173 System.arraycopy(password, 0, digest, challenge.length + 1, password.length);
179 System.arraycopy(ObexHelper.computeMd5Hash(digest), 0, header.mAuthResp, 2, 16);
184 System.arraycopy(challenge, 0, header.mAuthResp, 20, 16);
209 System.arraycopy(mChallengeDigest, 0, temp, 0, 16);
210 System.arraycopy(correctPassword, 0, temp, 16, correctPassword.length);
  /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);
  /frameworks/support/v7/appcompat/src/android/support/v7/content/res/
GrowingArrayUtils.java 46 System.arraycopy(array, 0, newArray, 0, currentSize);
61 System.arraycopy(array, 0, newArray, 0, currentSize);
76 System.arraycopy(array, 0, newArray, 0, currentSize);
91 System.arraycopy(array, 0, newArray, 0, currentSize);
113 System.arraycopy(array, index, array, index + 1, currentSize - index);
120 System.arraycopy(array, 0, newArray, 0, index);
122 System.arraycopy(array, index, newArray, index + 1, array.length - index);
133 System.arraycopy(array, index, array, index + 1, currentSize - index);
139 System.arraycopy(array, 0, newArray, 0, index);
141 System.arraycopy(array, index, newArray, index + 1, array.length - index)
    [all...]
  /libcore/benchmarks/src/benchmarks/
SystemArrayCopyBenchmark.java 26 // Provides benchmarking for different types of arrays using the arraycopy function.
33 System.arraycopy(src, 0, dst, 0, len);
42 System.arraycopy(src, 0, dst, 0, len);
51 System.arraycopy(src, 0, dst, 0, len);
60 System.arraycopy(src, 0, dst, 0, len);
69 System.arraycopy(src, 0, dst, 0, len);
78 System.arraycopy(src, 0, dst, 0, len);
87 System.arraycopy(src, 0, dst, 0, len);
96 System.arraycopy(src, 0, dst, 0, len);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
RFC3394WrapEngine.java 105 System.arraycopy(iv, 0, block, 0, iv.length);
106 System.arraycopy(in, inOff, block, iv.length, inLen);
114 System.arraycopy(block, 0, buf, 0, iv.length);
115 System.arraycopy(block, 8 * i, buf, iv.length, 8);
128 System.arraycopy(buf, 0, block, 0, 8);
129 System.arraycopy(buf, 8, block, 8 * i, 8);
158 System.arraycopy(in, inOff, a, 0, iv.length);
159 System.arraycopy(in, inOff + iv.length, block, 0, inLen - iv.length);
169 System.arraycopy(a, 0, buf, 0, iv.length);
170 System.arraycopy(block, 8 * (i - 1), buf, iv.length, 8)
    [all...]
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/java/io/
ByteArrayOutputStream.java 36 System.arraycopy(buf, 0, newBuf, 0, count);
45 System.arraycopy(buf, 0, result, 0, count);
  /libcore/luni/src/main/java/org/apache/harmony/security/
PrivateKeyImpl.java 52 System.arraycopy(encoding, 0, toReturn, 0, encoding.length);
63 System.arraycopy(encoding, 0, this.encoding, 0, encoding.length);
PublicKeyImpl.java 57 System.arraycopy(encoding, 0, result, 0, encoding.length);
69 System.arraycopy(encoding, 0, this.encoding, 0, encoding.length);
  /packages/apps/LegacyCamera/src/com/android/camera/
IntArray.java 28 System.arraycopy(mData, 0, temp, 0, mSize);
42 System.arraycopy(mData, 0, result, 0, mSize);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
CTSBlockCipher.java 96 System.arraycopy(buf, blockSize, buf, 0, blockSize);
147 System.arraycopy(in, inOff, buf, bufOff, gapLen);
150 System.arraycopy(buf, blockSize, buf, 0, blockSize);
159 System.arraycopy(in, inOff, buf, bufOff, blockSize);
161 System.arraycopy(buf, blockSize, buf, 0, blockSize);
168 System.arraycopy(in, inOff, buf, bufOff, len);
234 System.arraycopy(block, 0, out, outOff + blockSize, len);
238 System.arraycopy(block, 0, out, outOff, blockSize);
268 System.arraycopy(buf, blockSize, block, 0, len);
271 System.arraycopy(lastBlock, 0, out, outOff + blockSize, len)
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
GrowingArrayUtils.java 47 System.arraycopy(array, 0, newArray, 0, currentSize);
62 System.arraycopy(array, 0, newArray, 0, currentSize);
77 System.arraycopy(array, 0, newArray, 0, currentSize);
92 System.arraycopy(array, 0, newArray, 0, currentSize);
107 System.arraycopy(array, 0, newArray, 0, currentSize);
129 System.arraycopy(array, index, array, index + 1, currentSize - index);
137 System.arraycopy(array, 0, newArray, 0, index);
139 System.arraycopy(array, index, newArray, index + 1, array.length - index);
150 System.arraycopy(array, index, array, index + 1, currentSize - index);
156 System.arraycopy(array, 0, newArray, 0, index)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
Arrays.java 530 System.arraycopy(data, 0, copy, 0, data.length);
543 System.arraycopy(data, 0, copy, 0, data.length);
558 System.arraycopy(data, 0, existing, 0, existing.length);
604 System.arraycopy(data, 0, copy, 0, data.length);
617 System.arraycopy(data, 0, copy, 0, data.length);
632 System.arraycopy(data, 0, existing, 0, existing.length);
644 System.arraycopy(data, 0, copy, 0, data.length);
657 System.arraycopy(data, 0, copy, 0, data.length);
668 System.arraycopy(data, 0, tmp, 0, newLength);
672 System.arraycopy(data, 0, tmp, 0, data.length)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
KeyParameter.java 23 System.arraycopy(key, keyOff, this.key, 0, keyLen);
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
LigatureEntry.java 22 System.arraycopy(componentChars, 0, this.componentChars, 0, componentCount);
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/java/
UnsafeByteSequence.java 53 System.arraycopy(bytes, 0, newBytes, 0, count);
56 System.arraycopy(buffer, offset, bytes, count, length);
63 System.arraycopy(bytes, 0, newBytes, 0, count);
74 System.arraycopy(bytes, 0, result, 0, count);
  /libcore/dex/src/main/java/com/android/dex/
ClassData.java 51 System.arraycopy(staticFields, 0, result, 0, staticFields.length);
52 System.arraycopy(instanceFields, 0, result, staticFields.length, instanceFields.length);
58 System.arraycopy(directMethods, 0, result, 0, directMethods.length);
59 System.arraycopy(virtualMethods, 0, result, directMethods.length, virtualMethods.length);
  /libcore/luni/src/test/java/libcore/java/lang/
OldSystemTest.java 32 // Test for method void java.lang.System.arraycopy(java.lang.Object,
39 System.arraycopy(new Object(), 0, b, 0, 0);
47 System.arraycopy(a, 0, new Object(), 0, 0);
55 System.arraycopy(new char[] {'a'}, 0, new String[1], 0, 1);
63 System.arraycopy(new String[] {"a"}, 0, new char[1], 0, 1);
71 System.arraycopy(new char[] {'a'}, 0, new int[1], 0, 1);
79 System.arraycopy(new Character[] {'a'}, 0, new Integer[1], 0, 1);
87 System.arraycopy(null, 0, new int[1], 0, 1);
95 System.arraycopy(new int[]{'1'}, 0, null, 0, 1);
102 System.arraycopy(a, a.length + 1, b, 0, 1)
    [all...]
  /art/test/011-array-copy/src/
Main.java 20 * System.arraycopy cases
37 System.arraycopy(stringArray, 0, objectArray, 0, stringArray.length);
39 System.arraycopy(objectArray, 0, stringArray, 0, stringArray.length);
43 System.arraycopy(objectArray, 0, stringArray, 0,stringArray.length);
95 System.arraycopy(byteArray, srcPos, byteArray, dstPos, length);
96 System.arraycopy(shortArray, srcPos, shortArray, dstPos, length);
97 System.arraycopy(intArray, srcPos, intArray, dstPos, length);
98 System.arraycopy(longArray, srcPos, longArray, dstPos, length);
99 System.arraycopy(charArray, srcPos, charArray, dstPos, length);
165 System.arraycopy(new float[len], 0, new float[len], 0, len)
    [all...]
  /frameworks/base/keystore/java/android/security/keystore/
ArrayUtils.java 52 System.arraycopy(arr1, offset1, result, 0, len1);
53 System.arraycopy(arr2, offset2, result, len1, len2);
66 System.arraycopy(arr, offset, result, 0, len);
77 System.arraycopy(arr1, 0, result, 0, arr1.length);
78 System.arraycopy(arr2, 0, result, arr1.length, arr2.length);
  /external/apache-xml/src/main/java/org/apache/xml/utils/
ObjectVector.java 97 System.arraycopy(v.m_map, 0, m_map, 0, m_firstFree);
135 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
159 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
185 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
212 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
219 System.arraycopy(m_map, at, m_map, at + 1, m_firstFree - at);
260 System.arraycopy(m_map, i + 1, m_map, i - 1, m_firstFree - i);
285 System.arraycopy(m_map, i + 1, m_map, i, m_firstFree);
414 System.arraycopy(m_map, 0, newMap, 0, m_firstFree);
IntVector.java 97 System.arraycopy(v.m_map, 0, m_map, 0, m_firstFree);
135 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
159 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
185 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
212 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
219 System.arraycopy(m_map, at, m_map, at + 1, m_firstFree - at);
263 System.arraycopy(m_map, i + 1, m_map, i - 1, m_firstFree - i);
288 System.arraycopy(m_map, i + 1, m_map, i, m_firstFree);
  /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]);

Completed in 388 milliseconds

1 2 3 4 5 6 7 8 91011>>