| /frameworks/base/core/java/android/view/inputmethod/ | 
| SparseRectFArray.java | 173                 System.arraycopy(mKeys, 0, newArray, 0, mCount); 179                 System.arraycopy(mCoordinates, 0, newArray, 0, mCount * 4);
 185                 System.arraycopy(mFlagsArray, 0, newArray, 0, mCount);
 254             System.arraycopy(builder.mKeys, 0, mKeys, 0, builder.mCount);
 255             System.arraycopy(builder.mCoordinates, 0, mCoordinates, 0, builder.mCount * 4);
 256             System.arraycopy(builder.mFlagsArray, 0, mFlagsArray, 0, builder.mCount);
 
 | 
| /frameworks/base/rs/java/android/renderscript/ | 
| 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/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);
 352             System.arraycopy(mKeys, 0, nkeys, 0, mKeys.length);
 353             System.arraycopy(mValues, 0, nvalues, 0, mValues.length);
 
 | 
| /libcore/ojluni/src/main/java/sun/net/www/http/ | 
| ChunkedInputStream.java | 191                     System.arraycopy(rawData, rawPos, tmp, 0, used); 196                     System.arraycopy(rawData, rawPos, rawData, 0, used);
 364                             System.arraycopy(chunkData, chunkPos, tmp, 0, cnt);
 367                             System.arraycopy(chunkData, chunkPos, chunkData, 0, cnt);
 377                     System.arraycopy(rawData, rawPos, chunkData, chunkCount, copyLen);
 702         System.arraycopy(chunkData, chunkPos, b, off, cnt);
 
 | 
| /external/libgdx/gdx/src/com/badlogic/gdx/utils/ | 
| ComparableTimSort.java | 240 			// Switch is just an optimization for arraycopy in default case 248 				System.arraycopy(a, left, a, left + 1, n);
 568 		System.arraycopy(a, base1, tmp, 0, len1);
 577 			System.arraycopy(tmp, cursor1, a, dest, len1);
 581 			System.arraycopy(a, cursor2, a, dest, len2);
 618 					System.arraycopy(tmp, cursor1, a, dest, count1);
 630 					System.arraycopy(a, cursor2, a, dest, count2);
 647 			System.arraycopy(a, cursor2, a, dest, len2);
 654 			System.arraycopy(tmp, cursor1, a, dest, len1);
 672 		System.arraycopy(a, base2, tmp, 0, len2);
 [all...]
 | 
| TimSort.java | 269 			// Switch is just an optimization for arraycopy in default case 277 				System.arraycopy(a, left, a, left + 1, n);
 600 		System.arraycopy(a, base1, tmp, 0, len1);
 609 			System.arraycopy(tmp, cursor1, a, dest, len1);
 613 			System.arraycopy(a, cursor2, a, dest, len2);
 651 					System.arraycopy(tmp, cursor1, a, dest, count1);
 663 					System.arraycopy(a, cursor2, a, dest, count2);
 680 			System.arraycopy(a, cursor2, a, dest, len2);
 687 			System.arraycopy(tmp, cursor1, a, dest, len1);
 704 		System.arraycopy(a, base2, tmp, 0, len2);
 [all...]
 | 
| /libcore/ojluni/src/main/java/java/util/ | 
| ComparableTimSort.java | 273             // Switch is just an optimization for arraycopy in default case 278                 default: System.arraycopy(a, left, a, left + 1, n);
 654         System.arraycopy(a, base1, tmp, cursor1, len1);
 659             System.arraycopy(tmp, cursor1, a, dest, len1);
 663             System.arraycopy(a, cursor2, a, dest, len2);
 704                     System.arraycopy(tmp, cursor1, a, dest, count1);
 717                     System.arraycopy(a, cursor2, a, dest, count2);
 737             System.arraycopy(a, cursor2, a, dest, len2);
 745             System.arraycopy(tmp, cursor1, a, dest, len1);
 768         System.arraycopy(a, base2, tmp, tmpBase, len2)
 [all...]
 | 
| TimSort.java | 307             // Switch is just an optimization for arraycopy in default case 312                 default: System.arraycopy(a, left, a, left + 1, n);
 686         System.arraycopy(a, base1, tmp, cursor1, len1);
 691             System.arraycopy(tmp, cursor1, a, dest, len1);
 695             System.arraycopy(a, cursor2, a, dest, len2);
 737                     System.arraycopy(tmp, cursor1, a, dest, count1);
 750                     System.arraycopy(a, cursor2, a, dest, count2);
 770             System.arraycopy(a, cursor2, a, dest, len2);
 778             System.arraycopy(tmp, cursor1, a, dest, len1);
 800         System.arraycopy(a, base2, tmp, tmpBase, len2)
 [all...]
 | 
| /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/jacobians/ | 
| FirstOrderIntegratorWithJacobians.java | 240         System.arraycopy(y0, 0, z, 0, n); 247             System.arraycopy(dY0dP[i], 0, z, n * (n + 1) + i * k, k);
 275         System.arraycopy(z, 0, y, 0, n);
 279             System.arraycopy(z, n * (i + 1), dydy0[i], 0, n);
 284             System.arraycopy(z, n * (n + 1) + i * k, dydp[i], 0, k);
 407             System.arraycopy(z,    0, y,    0, n);
 415             System.arraycopy(yDot, 0, zDot, 0, n);
 660             System.arraycopy(extendedState, 0, y, 0, y.length);
 670                 System.arraycopy(extendedState, start, dydy0[i], 0, n);
 683                 System.arraycopy(extendedState, start, dydp[i], 0, k)
 [all...]
 | 
| /frameworks/base/core/java/android/util/ | 
| ArrayMap.java | 317                 System.arraycopy(ohashes, 0, mHashes, 0, mSize); 318                 System.arraycopy(oarray, 0, mArray, 0, mSize<<1);
 467                 System.arraycopy(ohashes, 0, mHashes, 0, ohashes.length);
 468                 System.arraycopy(oarray, 0, mArray, 0, oarray.length);
 477             System.arraycopy(mHashes, index, mHashes, index + 1, mSize - index);
 478             System.arraycopy(mArray, index << 1, mArray, (index + 1) << 1, (mSize - index) << 1);
 563                 System.arraycopy(array.mHashes, 0, mHashes, 0, N);
 564                 System.arraycopy(array.mArray, 0, mArray, 0, N<<1);
 620                     System.arraycopy(ohashes, 0, mHashes, 0, index);
 621                     System.arraycopy(oarray, 0, mArray, 0, index << 1)
 [all...]
 | 
| /libcore/ojluni/src/main/java/java/lang/ | 
| AbstractStringBuilder.java | 356         System.arraycopy(value, srcBegin, dst, dstBegin, srcEnd - srcBegin); 490             System.arraycopy(other.value, start, value, count, len);
 520         System.arraycopy(str, 0, value, count, len);
 549         if (len > 0)                // let arraycopy report AIOOBE for len < 0
 551         System.arraycopy(str, offset, value, count, len);
 729             System.arraycopy(value, start+len, value, start, count-end);
 793         System.arraycopy(value, index+1, value, index, count-index-1);
 [all...]
 | 
| /packages/apps/Nfc/nxp/src/com/android/nfc/dhimpl/ | 
| NativeNfcTag.java | 469             System.arraycopy(mTechList, 0, mNewTechList, 0, mTechList.length); 474             System.arraycopy(mTechHandles, 0, mNewHandleList, 0, mTechHandles.length);
 479             System.arraycopy(mTechLibNfcTypes, 0, mNewTypeList, 0, mTechLibNfcTypes.length);
 490                 System.arraycopy(mTechList, 0, mNewTechList, 0, techIndex);
 491                 System.arraycopy(mTechList, techIndex + 1, mNewTechList, techIndex,
 496                 System.arraycopy(mTechHandles, 0, mNewHandleList, 0, techIndex);
 497                 System.arraycopy(mTechHandles, techIndex + 1, mNewTechList, techIndex,
 502                 System.arraycopy(mTechLibNfcTypes, 0, mNewTypeList, 0, techIndex);
 503                 System.arraycopy(mTechLibNfcTypes, techIndex + 1, mNewTypeList, techIndex,
 542                 System.arraycopy(oldTechExtras, 0, newTechExtras, 0, oldTechExtras.length)
 [all...]
 | 
| /art/test/201-built-in-exception-detail-messages/src/ | 
| Main.java | 137       System.arraycopy(src, 1, dst, 0, 5); 146       System.arraycopy(src, 0, dst, 0, 1);
 154       System.arraycopy(src, 0, dst, 0, 1);
 162       System.arraycopy(src, 0, dst, 0, 1);
 170       System.arraycopy(src, 0, dst, 0, 1);
 178       System.arraycopy(src, 0, dst, 0, 1);
 187       System.arraycopy(new C(), 0, "hello", 0, 1);
 
 | 
| /development/samples/BrokenKeyDerivation/src/com/example/android/brokenkeyderivation/ | 
| InsecureSHA1PRNGKeyDerivator.java | 252             System.arraycopy(copies, HASHCOPY_OFFSET, this.seed, HASH_OFFSET, 305             System.arraycopy(seed, HASH_OFFSET, copies, HASHCOPY_OFFSET,
 352             System.arraycopy(nextBytes, nextBIndex, bytes, nextByteToReturn, n);
 384                 System.arraycopy(seed, 0, copies, FRAME_OFFSET, FRAME_LENGTH);
 385                 System.arraycopy(copies, EXTRAFRAME_OFFSET, seed, 0,
 389                 System.arraycopy(copies, FRAME_OFFSET, seed, 0, FRAME_LENGTH);
 408                 System.arraycopy(nextBytes, 0, bytes, nextByteToReturn, j);
 
 | 
| /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/ | 
| GCMBlockCipher.java | 165             System.arraycopy(nonce, 0, J0, 0, nonce.length); 273             System.arraycopy(S_at, 0, S_atPre, 0, BLOCK_SIZE);
 286             System.arraycopy(S_atPre, 0, S, 0, BLOCK_SIZE);
 351             System.arraycopy(bufBlock, BLOCK_SIZE, bufBlock, 0, macSize);
 450         System.arraycopy(tag, 0, macBlock, 0, macSize);
 455             System.arraycopy(macBlock, 0, out, outOff + bufOff, macSize);
 462             System.arraycopy(bufBlock, extra, msgMac, 0, macSize);
 516         System.arraycopy(tmp, 0, out, outOff, BLOCK_SIZE);
 528         System.arraycopy(tmp, 0, out, outOff, len);
 
 | 
| /external/jetty/src/java/org/eclipse/jetty/util/ | 
| BlockingArrayQueue.java | 465                     System.arraycopy(_elements,i+1,_elements,i,_tail-i); 471                     System.arraycopy(_elements,i+1,_elements,i,_capacity-i-1);
 475                         System.arraycopy(_elements,1,_elements,0,_tail-1);
 570                         System.arraycopy(_elements,i,_elements,i+1,_tail-i);
 577                             System.arraycopy(_elements,0,_elements,1,_tail);
 581                         System.arraycopy(_elements,i,_elements,i+1,_capacity-i-1);
 618                     System.arraycopy(_elements,head,elements,0,new_tail);
 624                     System.arraycopy(_elements,head,elements,0,cut);
 625                     System.arraycopy(_elements,0,elements,cut,tail);
 
 | 
| /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/ | 
| MatrixStack.java | 59         System.arraycopy(m, offset, mMatrix, mTop, MATRIX_SIZE); 79         System.arraycopy(mMatrix, mTop, mTemp, 0, MATRIX_SIZE);
 121         System.arraycopy(mMatrix, mTop, mMatrix, mTop + MATRIX_SIZE,
 128         System.arraycopy(mMatrix, mTop, mTemp, MATRIX_SIZE, MATRIX_SIZE);
 153         System.arraycopy(mMatrix, mTop, dest, offset, MATRIX_SIZE);
 
 | 
| /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/polynomials/ | 
| PolynomialFunctionLagrangeForm.java | 78         System.arraycopy(x, 0, this.x, 0, x.length); 79         System.arraycopy(y, 0, this.y, 0, y.length);
 110         System.arraycopy(x, 0, out, 0, x.length);
 123         System.arraycopy(y, 0, out, 0, y.length);
 142         System.arraycopy(coefficients, 0, out, 0, coefficients.length);
 
 | 
| /libcore/ojluni/src/main/java/java/util/jar/ | 
| Manifest.java | 230                     System.arraycopy(lbuf, 6, lastline, 0, len - 6); 236                 System.arraycopy(lastline, 0, buf, 0, lastline.length);
 237                 System.arraycopy(lbuf, 1, buf, lastline.length, len - 1);
 360             System.arraycopy(buf, pos, b, off, len);
 389                 System.arraycopy(tbuf, pos, b, off, n);
 
 | 
| /libcore/ojluni/src/main/java/sun/security/ec/ | 
| ECParameters.java | 96         System.arraycopy(data, 1, xb, 0, n); 97         System.arraycopy(data, n + 1, yb, 0, n);
 113         System.arraycopy(xb, 0, b, n - xb.length + 1, xb.length);
 114         System.arraycopy(yb, 0, b, b.length - yb.length, yb.length);
 129         System.arraycopy(b, i, t, 0, t.length);
 
 | 
| /packages/apps/Messaging/src/com/android/messaging/mmslib/pdu/ | 
| EncodedStringValue.java | 60         System.arraycopy(data, 0, mData, 0, data.length); 124         System.arraycopy(mData, 0, byteArray, 0, mData.length);
 140         System.arraycopy(textString, 0, mData, 0, textString.length);
 184             System.arraycopy(textString, 0, mData, 0, textString.length);
 209         System.arraycopy(mData, 0, dstBytes, 0, len);
 
 | 
| /cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/hcef/ | 
| HceFReaderActivity.java | 64         System.arraycopy(nfcid2, 0, echo_cmd, 2, nfcid2.length); 65         System.arraycopy(payload, 0, echo_cmd, 2 + nfcid2.length, payload.length);
 73         System.arraycopy(nfcid2, 0, cmd, 2, nfcid2.length);
 
 | 
| /dalvik/dexgen/src/com/android/dexgen/util/ | 
| IntList.java | 242         System.arraycopy (values, n, values, n+1, size - n); 262         System.arraycopy (values, n + 1, values, n, size - n - 1);
 275             System.arraycopy(values, 0, newv, 0, size);
 
 |