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

<<21222324252627282930>>

  /frameworks/base/rs/java/android/renderscript/
Matrix3f.java 43 System.arraycopy(dataArray, 0, mMat, 0, mMat.length);
101 System.arraycopy(src.getArray(), 0, mMat, 0, mMat.length);
Program.java 260 System.arraycopy(str, 0, buf2, 0, str.length);
356 System.arraycopy(mInputs, 0, p.mInputs, 0, mInputCount);
358 System.arraycopy(mOutputs, 0, p.mOutputs, 0, mOutputCount);
360 System.arraycopy(mConstants, 0, p.mConstants, 0, mConstantCount);
363 System.arraycopy(mTextureTypes, 0, p.mTextures, 0, mTextureCount);
365 System.arraycopy(mTextureNames, 0, p.mTextureNames, 0, mTextureCount);
  /frameworks/base/services/core/java/com/android/server/hdmi/
HdmiCecMessageBuilder.java 469 System.arraycopy(operands, 0, params, 3, operands.length);
  /frameworks/base/services/core/java/com/android/server/net/
NetworkPolicyManagerShellCommand.java 333 System.arraycopy(policies, 0, newPolicies, 0, policies.length);
  /frameworks/base/services/core/java/com/android/server/pm/
PackageSignatures.java 172 System.arraycopy(mSignatures, 0, newSigs, 0, pos);
  /frameworks/base/telephony/java/android/telephony/
TelephonyHistogram.java 167 System.arraycopy(array, 0, clone, 0, array.length);
  /frameworks/base/telephony/java/com/android/internal/telephony/
GsmAlphabet.java 311 System.arraycopy(header, 0, ret, 2, header.length);
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/text/
OptimizingLineBreaker.java 145 System.arraycopy(lineBreaks.breaks, 0, breaks, 0, toCopy);
146 System.arraycopy(lineBreaks.widths, 0, widths, 0, toCopy);
147 System.arraycopy(lineBreaks.flags, 0, flags, 0, toCopy);
  /frameworks/base/wifi/java/android/net/wifi/aware/
TlvBufferUtils.java 175 System.arraycopy(array, offset, mArray, mPosition, length);
  /frameworks/data-binding/baseLibrary/src/main/java/android/databinding/
CallbackRegistry.java 299 System.arraycopy(mRemainderRemoved, 0, newRemainders, 0, mRemainderRemoved.length);
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/scanner/
KnownBandsChannelHelperTest.java 159 System.arraycopy(CHANNELS_24_GHZ, 0, expectedChannels, 0, CHANNELS_24_GHZ.length);
160 System.arraycopy(CHANNELS_5_GHZ, 0, expectedChannels, CHANNELS_24_GHZ.length,
172 System.arraycopy(CHANNELS_24_GHZ, 0, expectedChannels, 0, CHANNELS_24_GHZ.length);
173 System.arraycopy(CHANNELS_5_GHZ, 0, expectedChannels, CHANNELS_24_GHZ.length,
175 System.arraycopy(CHANNELS_DFS, 0, expectedChannels,
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaInboundSmsHandler.java 303 System.arraycopy(pdu, index, userData, 0, pdu.length - index);
327 System.arraycopy(origPdu, index, omaPdu, 0, omaPdu.length);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
UsimDataDownloadHandler.java 148 System.arraycopy(pdu, 1, envelope, index, scAddressLength);
158 System.arraycopy(pdu, tpduIndex, envelope, index, tpduLength);
254 System.arraycopy(responseBytes, 0, smsAckPdu, index, responseBytes.length);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
AdnRecord.java 253 System.arraycopy(bcdNumber, 0, adnString,
264 System.arraycopy(byteTag, 0, adnString, 0, byteTag.length);
  /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);
  /frameworks/rs/support/java/src/android/support/v8/renderscript/
Matrix3f.java 46 System.arraycopy(dataArray, 0, mMat, 0, mMat.length);
104 System.arraycopy(src.getArray(), 0, mMat, 0, mMat.length);
  /frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/engine/
Matrix.java 366 System.arraycopy(src.m, 0, m, 0, m.length);
Quaternion.java 34 System.arraycopy(src.x, 0, x, 0, x.length);
  /frameworks/support/compat/java/android/support/v4/util/
LongSparseArray.java 206 System.arraycopy(mKeys, 0, nkeys, 0, mKeys.length);
207 System.arraycopy(mValues, 0, nvalues, 0, mValues.length);
215 System.arraycopy(mKeys, i, mKeys, i + 1, mSize - i);
216 System.arraycopy(mValues, i, mValues, i + 1, mSize - i);
347 System.arraycopy(mKeys, 0, nkeys, 0, mKeys.length);
348 System.arraycopy(mValues, 0, nvalues, 0, mValues.length);
SparseArrayCompat.java 199 System.arraycopy(mKeys, 0, nkeys, 0, mKeys.length);
200 System.arraycopy(mValues, 0, nvalues, 0, mValues.length);
208 System.arraycopy(mKeys, i, mKeys, i + 1, mSize - i);
209 System.arraycopy(mValues, i, mValues, i + 1, mSize - i);
342 System.arraycopy(mKeys, 0, nkeys, 0, mKeys.length);
343 System.arraycopy(mValues, 0, nvalues, 0, mValues.length);
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
PositionMap.java 209 System.arraycopy(mKeys, 0, nkeys, 0, mKeys.length);
210 System.arraycopy(mValues, 0, nvalues, 0, mValues.length);
218 System.arraycopy(mKeys, i, mKeys, i + 1, mSize - i);
219 System.arraycopy(mValues, i, mValues, i + 1, mSize - i);
354 System.arraycopy(mKeys, 0, nkeys, 0, mKeys.length);
355 System.arraycopy(mValues, 0, nvalues, 0, mValues.length);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/
DeflaterInputStreamTest.java 165 System.arraycopy(result, 0, splicedResult, 0, 23);
182 System.arraycopy(buf, 0, splicedBuf, 0, splicedBuf.length);
  /libcore/luni/src/main/java/java/math/
Conversion.java 84 System.arraycopy(digits, 0, temp, 0, numberLength);
204 System.arraycopy(digits, 0, temp, 0, tempLen);
  /libcore/luni/src/main/java/libcore/io/
IoUtils.java 242 System.arraycopy(bytes, 0, newBytes, 0, capacity);
267 System.arraycopy(bytes, 0, result, 0, count);
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/crypto/
SHA1PRNG_SecureRandomImpl.java 221 System.arraycopy(copies, HASHCOPY_OFFSET, this.seed, HASH_OFFSET,
310 System.arraycopy(seed, HASH_OFFSET, copies, HASHCOPY_OFFSET,
357 System.arraycopy(nextBytes, nextBIndex, bytes, nextByteToReturn, n);
389 System.arraycopy(seed, 0, copies, FRAME_OFFSET, FRAME_LENGTH);
390 System.arraycopy(copies, EXTRAFRAME_OFFSET, seed, 0,
394 System.arraycopy(copies, FRAME_OFFSET, seed, 0, FRAME_LENGTH);
413 System.arraycopy(nextBytes, 0, bytes, nextByteToReturn, j);
448 System.arraycopy(seed, 0, intData, 0, nRemaining);
449 System.arraycopy(seed, HASH_OFFSET, intData, nRemaining,
473 System.arraycopy(seed, 0, intData, offset, FRAME_LENGTH)
    [all...]

Completed in 1633 milliseconds

<<21222324252627282930>>