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

1 2 3 45 6 7 8 91011>>

  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/apple/
AppleDataBox.java 61 System.arraycopy(data, 0, this.data, 0, data.length);
65 System.arraycopy(fourBytes, 0, this.fourBytes, 0, 4);
  /external/smali/util/src/main/java/org/jf/util/
SparseArray.java 168 System.arraycopy(mKeys, 0, nkeys, 0, mKeys.length);
169 System.arraycopy(mValues, 0, nvalues, 0, mValues.length);
177 System.arraycopy(mKeys, i, mKeys, i + 1, mSize - i);
178 System.arraycopy(mValues, i, mValues, i + 1, mSize - i);
308 System.arraycopy(mKeys, 0, nkeys, 0, mKeys.length);
309 System.arraycopy(mValues, 0, nvalues, 0, mValues.length);
334 System.arraycopy(mKeys, 0, nkeys, 0, mKeys.length);
335 System.arraycopy(mValues, 0, nvalues, 0, mValues.length);
  /frameworks/base/core/java/com/android/internal/util/
BitwiseOutputStream.java 66 System.arraycopy(mBuf, 0, newBuf, 0, len);
78 System.arraycopy(mBuf, 0, newBuf, 0, mEnd >>> 3);
  /libcore/luni/src/test/java/android/system/
UnixSocketAddressTest.java 33 System.arraycopy(abstractNameBytes, 0, expected, 0, abstractNameBytes.length);
48 System.arraycopy(abstractNameBytes, 0, expected, 1, abstractNameBytes.length);
  /libcore/ojluni/src/main/java/javax/crypto/
NullCipherSpi.java 83 System.arraycopy(input, inputOffset, x, 0, inputLen);
91 System.arraycopy(input, inputOffset, output, outputOffset, inputLen);
  /libcore/support/src/test/java/tests/support/
Support_ASimpleWriter.java 63 System.arraycopy(src, offset, buf, pos, count);
73 System.arraycopy(buf, 0, toReturn, 0, pos);
  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
AdvtFilterOnFoundOnLostInfo.java 118 System.arraycopy(mAdvPkt, 0, result, 0, mAdvPkt.length);
120 System.arraycopy(mScanRsp, 0, result, mAdvPkt.length, mScanRsp.length);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/resources/platform/
DeclareStyleableInfo.java 61 System.arraycopy(parents, 0, mParents, 0, parents.length);
69 System.arraycopy(attrs, 0, mAttributes, 0, attrs.length);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
AndroidNature.java 163 System.arraycopy(natures, 0, newNatures, 1, natures.length);
166 System.arraycopy(natures, 0, newNatures, 0, natures.length);
196 System.arraycopy(commands, 0, newCommands, 1, commands.length);
240 System.arraycopy(commands, 0, newCommands, 0, index);
248 System.arraycopy(commands, index, newCommands, index + 1, commands.length-index);
268 System.arraycopy(commands, 0, newCommands, 0, commands.length);
289 System.arraycopy(commands, 0, newCommands, 0, i);
290 System.arraycopy(commands, i + 1, newCommands, i, commands.length - i - 1);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
RelativeLayoutRuleTest.java 53 System.arraycopy(graphicsFragments, 0, combined, 0, graphicsFragments.length);
54 System.arraycopy(extraFragments, 0, combined, graphicsFragments.length,
  /frameworks/support/compat/java/android/support/v4/util/
SimpleArrayMap.java 259 System.arraycopy(ohashes, 0, mHashes, 0, mSize);
260 System.arraycopy(oarray, 0, mArray, 0, mSize<<1);
403 System.arraycopy(ohashes, 0, mHashes, 0, ohashes.length);
404 System.arraycopy(oarray, 0, mArray, 0, oarray.length);
413 System.arraycopy(mHashes, index, mHashes, index + 1, mSize - index);
414 System.arraycopy(mArray, index << 1, mArray, (index + 1) << 1, (mSize - index) << 1);
433 System.arraycopy(array.mHashes, 0, mHashes, 0, N);
434 System.arraycopy(array.mArray, 0, mArray, 0, N<<1);
489 System.arraycopy(ohashes, 0, mHashes, 0, index);
490 System.arraycopy(oarray, 0, mArray, 0, index << 1)
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/nano/
FieldArray.java 151 System.arraycopy(mFieldNumbers, 0, nkeys, 0, mFieldNumbers.length);
152 System.arraycopy(mData, 0, nvalues, 0, mData.length);
159 System.arraycopy(mFieldNumbers, i, mFieldNumbers, i + 1, mSize - i);
160 System.arraycopy(mData, i, mData, i + 1, mSize - i);
282 System.arraycopy(mFieldNumbers, 0, clone.mFieldNumbers, 0, size);
  /frameworks/base/core/java/android/os/
WorkSource.java 187 System.arraycopy(other.mUids, 0, mUids, 0, mNum);
193 System.arraycopy(other.mNames, 0, mNames, 0, mNum);
373 if (i1 < N1) System.arraycopy(uids1, i1+1, uids1, i1, N1-i1);
408 System.arraycopy(uids1, i1+1, uids1, i1, N1-i1);
409 System.arraycopy(names1, i1+1, names1, i1, N1-i1);
473 if (i1 > 0) System.arraycopy(uids1, 0, newuids, 0, i1);
474 if (i1 < N1) System.arraycopy(uids1, i1, newuids, i1+1, N1-i1);
478 if (i1 < N1) System.arraycopy(uids1, i1, uids1, i1+1, N1-i1);
504 System.arraycopy(uids1, i1, uids1, start, N1-i1);
587 System.arraycopy(mUids, i1, mUids, start, mNum-i1)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/content/pm/
LimitedLengthInputStreamTest.java 86 System.arraycopy(TEST_STRING1, offset, expected, 0, length);
91 System.arraycopy(temp, 0, actual, 0, length);
127 System.arraycopy(temp, 0, actual, 0, actual.length);
136 System.arraycopy(TEST_STRING1, offset, expected, 0, length);
141 System.arraycopy(temp, 0, actual, 0, length);
  /frameworks/base/graphics/java/android/graphics/
ColorMatrix.java 76 System.arraycopy(src, 0, mArray, 0, 20);
83 System.arraycopy(src.mArray, 0, mArray, 0, 20);
110 System.arraycopy(src.mArray, 0, mArray, 0, 20);
117 System.arraycopy(src, 0, mArray, 0, 20);
203 System.arraycopy(tmp, 0, mArray, 0, 20);
  /frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
EncodedStringValue.java 60 System.arraycopy(data, 0, mData, 0, data.length);
109 System.arraycopy(mData, 0, byteArray, 0, mData.length);
125 System.arraycopy(textString, 0, mData, 0, textString.length);
169 System.arraycopy(textString, 0, mData, 0, textString.length);
194 System.arraycopy(mData, 0, dstBytes, 0, len);
  /packages/apps/Messaging/src/android/support/v7/mms/pdu/
EncodedStringValue.java 60 System.arraycopy(data, 0, mData, 0, data.length);
109 System.arraycopy(mData, 0, byteArray, 0, mData.length);
125 System.arraycopy(textString, 0, mData, 0, textString.length);
169 System.arraycopy(textString, 0, mData, 0, textString.length);
194 System.arraycopy(mData, 0, dstBytes, 0, len);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/encodings/
OAEPEncoding.java 150 System.arraycopy(in, inOff, block, block.length - inLen, inLen);
164 System.arraycopy(defHash, 0, block, defHash.length, defHash.length);
186 System.arraycopy(seed, 0, block, 0, defHash.length);
224 System.arraycopy(data, 0, block, block.length - data.length, data.length);
301 System.arraycopy(block, start, output, 0, output.length);
343 System.arraycopy(hashBuf, 0, mask, counter * hashBuf.length, hashBuf.length);
356 System.arraycopy(hashBuf, 0, mask, counter * hashBuf.length, mask.length - (counter * hashBuf.length));
  /external/emma/core/java12/com/vladium/util/
ByteArrayOStream.java 63 System.arraycopy (mbuf, 0, newbuf, 0, pos);
87 System.arraycopy (mbuf, 0, newbuf, 0, pos);
112 System.arraycopy (mbuf, 0, newbuf, 0, pos);
162 // System.arraycopy (m_buf, 0, newbuf, 0, m_pos);
191 // System.arraycopy (mbuf, 0, newbuf, 0, pos);
216 System.arraycopy (mbuf, 0, result, 0, pos);
255 System.arraycopy (mbuf, 0, newbuf, 0, pos);
284 System.arraycopy (mbuf, 0, newbuf, 0, pos);
292 System.arraycopy (buf, offset, mbuf, pos, length);
  /frameworks/base/core/java/android/net/nsd/
DnsSdTxtRecord.java 129 System.arraycopy(oldBytes, 0, mData, 0, avStart);
130 System.arraycopy(oldBytes, avStart + avLen + 1, mData, avStart,
182 System.arraycopy(oldBytes, 0, mData, 0, insertion);
184 System.arraycopy(oldBytes, insertion, mData, newLen - secondHalfLen, secondHalfLen);
186 System.arraycopy(keyBytes, 0, mData, insertion + 1, keyBytes.length);
189 System.arraycopy(value, 0, mData, insertion + keyBytes.length + 2, valLen);
233 System.arraycopy(mData, avStart + aLen + 2, value, 0, avLen - aLen - 1);
  /libcore/luni/src/test/java/libcore/java/lang/
SystemTest.java 71 System.arraycopy(new char[5], 0, "Hello", 0, 3);
80 System.arraycopy("Hello", 0, new char[5], 0, 3);
89 System.arraycopy(new char[5], 0, new Object[5], 0, 3);
98 System.arraycopy(new Object[] { null, 5, "hello" }, 0,
108 System.arraycopy(null, 0, new char[5], 0, 3);
114 System.arraycopy(new char[5], 0, null, 0, 3);
122 * System.arraycopy() must never copy objects into arrays that can't store
135 // it's a Thread it isn't safe for arrayCopy; when its null it is!
145 System.arraycopy(source, 0, target, 0, source.length);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
CCMBlockCipher.java 170 System.arraycopy(macBlock, 0, mac, 0, mac.length);
261 System.arraycopy(nonce, 0, iv, 1, nonce.length);
293 System.arraycopy(in, inIndex, block, 0, inLen + inOff - inIndex);
297 System.arraycopy(block, 0, output, outIndex, inLen + inOff - inIndex);
299 System.arraycopy(encMac, 0, output, outOff + inLen, macSize);
313 System.arraycopy(in, inOff + outputLen, macBlock, 0, macSize);
331 System.arraycopy(in, inIndex, block, 0, outputLen - (inIndex - inOff));
335 System.arraycopy(block, 0, output, outIndex, outputLen - (inIndex - inOff));
370 System.arraycopy(nonce, 0, b0, 1, nonce.length);
  /external/caliper/examples/src/main/java/examples/
CopyArrayBenchmark.java 110 System.arraycopy(array, 0, copy, 0, array.length);
115 System.arraycopy(array, 0, copy, 0, array.length);
120 System.arraycopy(array, 0, copy, 0, array.length);
125 System.arraycopy(array, 0, copy, 0, array.length);
130 System.arraycopy(array, 0, copy, 0, array.length);
135 System.arraycopy(array, 0, copy, 0, array.length);
140 System.arraycopy(array, 0, copy, 0, array.length);
145 System.arraycopy(array, 0, copy, 0, array.length);
150 System.arraycopy(array, 0, copy, 0, array.length);
  /external/apache-http/src/org/apache/http/util/
ByteArrayBuffer.java 63 System.arraycopy(this.buffer, 0, newbuffer, 0, this.len);
82 System.arraycopy(b, off, this.buffer, this.len, len);
131 System.arraycopy(this.buffer, 0, b, 0, this.len);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/macs/
CBCBlockCipherMac.java 150 System.arraycopy(in, inOff, buf, bufOff, gapLen);
167 System.arraycopy(in, inOff, buf, bufOff, len);
202 System.arraycopy(mac, 0, out, outOff, macSize);

Completed in 1990 milliseconds

1 2 3 45 6 7 8 91011>>