| /dalvik/dx/src/com/android/dx/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);
 
 | 
| /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/ | 
| RungeKuttaIntegrator.java | 108       System.arraycopy(y0, 0, y, 0, y0.length); 171       System.arraycopy(yTmp, 0, y, 0, y0.length);
 172       System.arraycopy(yDotK[stages - 1], 0, yDotTmp, 0, y0.length);
 
 | 
| /external/apache-http/src/org/apache/http/util/ | 
| CharArrayBuffer.java | 65         System.arraycopy(this.buffer, 0, newbuffer, 0, this.len); 84         System.arraycopy(b, off, this.buffer, this.len, len);
 168             System.arraycopy(this.buffer, 0, b, 0, this.len);
 
 | 
| /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/ | 
| BufferedBlockCipher.java | 220             System.arraycopy(in, inOff, buf, bufOff, gapLen); 237         System.arraycopy(in, inOff, buf, bufOff, len);
 288                 System.arraycopy(buf, 0, out, outOff, resultLen);
 
 | 
| /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/paddings/ | 
| PaddedBufferedBlockCipher.java | 204             System.arraycopy(in, inOff, buf, bufOff, gapLen); 221         System.arraycopy(in, inOff, buf, bufOff, len);
 289                 System.arraycopy(buf, 0, out, outOff, resultLen);
 
 | 
| /external/dexmaker/src/dx/java/com/android/dx/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);
 
 | 
| /external/google-tv-pairing-protocol/java/src/com/google/polo/pairing/ | 
| PoloChallengeResponse.java | 154       System.arraycopy(alphaBytes, 0, result, 0, nonce.length); 155       System.arraycopy(nonce, 0, result, nonce.length, nonce.length);
 169     System.arraycopy(gamma, nonceLength, nonce, 0, nonceLength);
 
 | 
| /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/ | 
| ScriptList.java | 34                 System.arraycopy(features, 0, newFeatures, 0, features.length); 79                 System.arraycopy(langSysRecords, 0, newLangSysRecords, 0, langSysRecords.length);
 153             System.arraycopy(scriptRecords, 0, newScriptRecords, 0, scriptRecords.length);
 
 | 
| /external/javassist/src/main/javassist/bytecode/analysis/ | 
| Frame.java | 152         System.arraycopy(locals, 0, frame.locals, 0, locals.length); 153         System.arraycopy(stack, 0, frame.stack, 0, stack.length);
 166         System.arraycopy(stack, 0, frame.stack, 0, stack.length);
 
 | 
| /external/jetty/src/java/org/eclipse/jetty/util/ | 
| ByteArrayISO8859Writer.java | 221         System.arraycopy(_bout.getBuf(),0,_buf,_size,_bout.getCount()); 256             System.arraycopy(_buf,0,buf,0,_size);
 266         System.arraycopy(_buf,0,data,0,_size);
 
 | 
| /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/common/ | 
| BufferUtils.java | 16       System.arraycopy(oldBuffer, 0, newBuffer, 0, oldCapacity); 33       System.arraycopy(oldBuffer, 0, newBuffer, 0, oldCapacity);
 43       System.arraycopy(oldBuffer, 0, newBuffer, 0, oldCapacity);
 
 | 
| /external/libgdx/gdx/src/com/badlogic/gdx/utils/ | 
| ArrayMap.java | 82 		System.arraycopy(array.keys, 0, keys, 0, size); 83 		System.arraycopy(array.values, 0, values, 0, size);
 103 		System.arraycopy(keys, index, keys, index + 1, size - index);
 104 		System.arraycopy(values, index, values, index + 1, size - index);
 120 		System.arraycopy(map.keys, offset, keys, size, length);
 121 		System.arraycopy(map.values, offset, values, size, length);
 190 			System.arraycopy(keys, index, keys, index + 1, size - index);
 191 			System.arraycopy(values, index, values, index + 1, size - index);
 300 			System.arraycopy(keys, index + 1, keys, index, size - index);
 301 			System.arraycopy(values, index + 1, values, index, size - index);
 [all...]
 | 
| /external/mockito/cglib-and-asm/src/org/mockito/cglib/beans/ | 
| BulkBean.java | 123             System.arraycopy(getters, 0, instance.getters, 0, length); 126             System.arraycopy(setters, 0, instance.setters, 0, length);
 129             System.arraycopy(types, 0, instance.types, 0, types.length);
 
 | 
| /external/sl4a/Utils/src/com/trilead/ssh2/ | 
| StreamGobbler.java | 75                 System.arraycopy(buffer, 0, saveBuffer, 0, read_pos); 76                 System.arraycopy(buffer, read_pos, buffer, 0, buffer.length - read_pos);
 237       System.arraycopy(buffer, read_pos, b, off, avail);
 
 | 
| /libcore/ojluni/src/main/java/java/beans/ | 
| ChangeListenerMap.java | 89             System.arraycopy(array, 0, clone, 0, size); 111                             System.arraycopy(array, 0, clone, 0, i);
 112                             System.arraycopy(array, i + 1, clone, i, size - i);
 
 | 
| /libcore/ojluni/src/main/java/java/io/ | 
| BufferedInputStream.java | 212                 System.arraycopy(buffer, markpos, buffer, 0, sz); 223                 System.arraycopy(buffer, 0, nbuf, 0, pos);
 280         System.arraycopy(getBufIfOpen(), pos, b, off, cnt);
 
 | 
| /libcore/ojluni/src/main/java/sun/net/www/http/ | 
| ChunkedOutputStream.java | 158                 System.arraycopy(getHeader(size), 0, buf, 227                 System.arraycopy(b, inputIndex, buf, count, spaceInCurrentChunk);
 249                 System.arraycopy(b, inputIndex, buf, count, bytesToWrite);
 
 | 
| /packages/apps/Contacts/src/com/android/contacts/widget/ | 
| CompositeListAdapter.java | 79             System.arraycopy(mAdapters, 0, newAdapters, 0, mSize); 83             System.arraycopy(mCounts, 0, newCounts, 0, mSize);
 87             System.arraycopy(mViewTypeCounts, 0, newViewTypeCounts, 0, mSize);
 
 | 
| /external/icu/android_icu4j/src/main/java/android/icu/impl/ | 
| PropsVectors.java | 226                 System.arraycopy(v, 0, temp, 0, rows * columns); 235                 System.arraycopy(v, lastRow + columns, v, lastRow
 245                 System.arraycopy(v, firstRow, v, firstRow + columns, count);
 256                 System.arraycopy(v, lastRow, v, lastRow + columns, columns);
 307         System.arraycopy(v, rowIndex * columns + 2, rowToReturn, 0,
 456                 System.arraycopy(v, indexArray[i].intValue() + 2, temp, count,
 
 | 
| /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ | 
| PropsVectors.java | 224                 System.arraycopy(v, 0, temp, 0, rows * columns); 233                 System.arraycopy(v, lastRow + columns, v, lastRow
 243                 System.arraycopy(v, firstRow, v, firstRow + columns, count);
 254                 System.arraycopy(v, lastRow, v, lastRow + columns, columns);
 305         System.arraycopy(v, rowIndex * columns + 2, rowToReturn, 0,
 454                 System.arraycopy(v, indexArray[i].intValue() + 2, temp, count,
 
 | 
| /frameworks/base/obex/javax/obex/ | 
| HeaderSet.java | 363                         System.arraycopy(headerValue, 0, mTarget, 0, mTarget.length); 375                         System.arraycopy(headerValue, 0, mHttpHeader, 0, mHttpHeader.length);
 387                         System.arraycopy(headerValue, 0, mWho, 0, mWho.length);
 399                         System.arraycopy(headerValue, 0, mObjectClass, 0, mObjectClass.length);
 412                         System.arraycopy(headerValue, 0, mAppParam, 0, mAppParam.length);
 462                             System.arraycopy(headerValue, 0, mSequenceUserDefined[headerID - 0x70],
 
 | 
| /libcore/ojluni/src/main/java/sun/security/x509/ | 
| IPAddressName.java | 173             System.arraycopy(host, 0, address, 0, 4); 174             System.arraycopy(mask, 0, address, 4, 4);
 196             System.arraycopy(base, 0, address, 0, 16);
 261             System.arraycopy(address, 0, host, 0, 4);
 265                 System.arraycopy(address, 4, mask, 0, 4);
 272             System.arraycopy(address, 0, host, 0, 16);
 
 | 
| /cts/tools/vm-tests-tf/src/util/build/ | 
| ExecuteFile.java | 109     System.arraycopy(args, 0, cmdLine, 1, args.length); 116     System.arraycopy(args, 0, cmdLine, 1, args.length);
 
 | 
| /development/samples/training/threadsample/src/com/example/android/threadsample/ | 
| PhotoDownloadRunnable.java | 268                             System.arraycopy(tempBuffer, 0, expandedBuffer, 0, 283                         System.arraycopy(tempBuffer, 0, byteBuffer, 0, bufferOffset);
 
 | 
| /external/conscrypt/src/main/java/org/conscrypt/ | 
| OpenSSLECDHKeyAgreement.java | 80             System.arraycopy(buffer, 0, mResult, 0, mResult.length); 101         System.arraycopy(mResult, 0, sharedSecret, offset, mResult.length);
 
 |