/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/ |
D | Arrays.java | 530 System.arraycopy(data, 0, copy, 0, data.length); in clone() 543 System.arraycopy(data, 0, copy, 0, data.length); in clone() 558 System.arraycopy(data, 0, existing, 0, existing.length); in clone() 604 System.arraycopy(data, 0, copy, 0, data.length); in clone() 617 System.arraycopy(data, 0, copy, 0, data.length); in clone() 632 System.arraycopy(data, 0, existing, 0, existing.length); in clone() 644 System.arraycopy(data, 0, copy, 0, data.length); in clone() 657 System.arraycopy(data, 0, copy, 0, data.length); in clone() 668 System.arraycopy(data, 0, tmp, 0, newLength); in copyOf() 672 System.arraycopy(data, 0, tmp, 0, data.length); in copyOf() [all …]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/ |
D | RFC3394WrapEngine.java | 105 System.arraycopy(iv, 0, block, 0, iv.length); in wrap() 106 System.arraycopy(in, inOff, block, iv.length, inLen); in wrap() 114 System.arraycopy(block, 0, buf, 0, iv.length); in wrap() 115 System.arraycopy(block, 8 * i, buf, iv.length, 8); in wrap() 128 System.arraycopy(buf, 0, block, 0, 8); in wrap() 129 System.arraycopy(buf, 8, block, 8 * i, 8); in wrap() 158 System.arraycopy(in, inOff, a, 0, iv.length); in unwrap() 159 System.arraycopy(in, inOff + iv.length, block, 0, inLen - iv.length); in unwrap() 169 System.arraycopy(a, 0, buf, 0, iv.length); in unwrap() 170 System.arraycopy(block, 8 * (i - 1), buf, iv.length, 8); in unwrap() [all …]
|
D | DESedeWrapEngine.java | 148 System.arraycopy(in, inOff, keyToBeWrapped, 0, inLen); in wrap() 156 System.arraycopy(keyToBeWrapped, 0, WKCKS, 0, keyToBeWrapped.length); in wrap() 157 System.arraycopy(CKS, 0, WKCKS, keyToBeWrapped.length, CKS.length); in wrap() 181 System.arraycopy(this.iv, 0, TEMP2, 0, this.iv.length); in wrap() 182 System.arraycopy(TEMP1, 0, TEMP2, this.iv.length, TEMP1.length); in wrap() 267 System.arraycopy(TEMP2, 0, this.iv, 0, 8); in unwrap() 268 System.arraycopy(TEMP2, 8, TEMP1, 0, TEMP2.length - 8); in unwrap() 288 System.arraycopy(WKCKS, 0, result, 0, WKCKS.length - 8); in unwrap() 289 System.arraycopy(WKCKS, WKCKS.length - 8, CKStoBeVerified, 0, 8); in unwrap() 325 System.arraycopy(digest, 0, result, 0, 8); in calculateCMSKeyChecksum()
|
/external/sl4a/ScriptingLayerForAndroid/src/de/mud/terminal/ |
D | VDUBuffer.java | 223 System.arraycopy(charArray[screenBase + l], c, charArray[screenBase + l], c + 1, width - c - 1); in insertChar() 224 System.arraycopy(charAttributes[screenBase + l], c, charAttributes[screenBase + l], c + 1, in insertChar() 243 System.arraycopy(charArray[screenBase + l], c + 1, charArray[screenBase + l], c, width - c in deleteChar() 245 System.arraycopy(charAttributes[screenBase + l], c + 1, charAttributes[screenBase + l], c, in deleteChar() 398 System.arraycopy(charArray, oldBase + l, cbuf, 0, bottom - l - (n - 1)); in insertLine() 399 System.arraycopy(charAttributes, oldBase + l, abuf, 0, bottom - l - (n - 1)); in insertLine() 400 System.arraycopy(cbuf, 0, charArray, oldBase + l + n, bottom - l - (n - 1)); in insertLine() 401 System.arraycopy(abuf, 0, charAttributes, oldBase + l + n, bottom - l - (n - 1)); in insertLine() 433 System.arraycopy(charArray, offset, cbuf, 0, oldBase - offset); in insertLine() 434 System.arraycopy(charAttributes, offset, abuf, 0, oldBase - offset); in insertLine() [all …]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/ |
D | CTSBlockCipher.java | 96 System.arraycopy(buf, blockSize, buf, 0, blockSize); in processByte() 147 System.arraycopy(in, inOff, buf, bufOff, gapLen); in processBytes() 150 System.arraycopy(buf, blockSize, buf, 0, blockSize); in processBytes() 159 System.arraycopy(in, inOff, buf, bufOff, blockSize); in processBytes() 161 System.arraycopy(buf, blockSize, buf, 0, blockSize); in processBytes() 168 System.arraycopy(in, inOff, buf, bufOff, len); in processBytes() 234 System.arraycopy(block, 0, out, outOff + blockSize, len); in doFinal() 238 System.arraycopy(block, 0, out, outOff, blockSize); in doFinal() 268 System.arraycopy(buf, blockSize, block, 0, len); in doFinal() 271 System.arraycopy(lastBlock, 0, out, outOff + blockSize, len); in doFinal() [all …]
|
D | CFBBlockCipher.java | 74 System.arraycopy(iv, 0, IV, IV.length - iv.length, iv.length); in init() 82 System.arraycopy(iv, 0, IV, 0, IV.length); in init() 136 System.arraycopy(cfbV, blockSize, cfbV, 0, cfbV.length - blockSize); in encryptByte() 137 System.arraycopy(inBuf, 0, cfbV, cfbV.length - blockSize, blockSize); in encryptByte() 157 System.arraycopy(cfbV, blockSize, cfbV, 0, cfbV.length - blockSize); in decryptByte() 158 System.arraycopy(inBuf, 0, cfbV, cfbV.length - blockSize, blockSize); in decryptByte() 263 System.arraycopy(IV, 0, cfbV, 0, IV.length); in reset()
|
D | OFBBlockCipher.java | 68 System.arraycopy(iv, 0, IV, IV.length - iv.length, iv.length); in init() 76 System.arraycopy(iv, 0, IV, 0, IV.length); in init() 152 System.arraycopy(IV, 0, ofbV, 0, IV.length); in reset() 172 System.arraycopy(ofbV, blockSize, ofbV, 0, ofbV.length - blockSize); in calculateByte() 173 System.arraycopy(ofbOutV, 0, ofbV, ofbV.length - blockSize, blockSize); in calculateByte()
|
D | CCMBlockCipher.java | 170 System.arraycopy(macBlock, 0, mac, 0, mac.length); in getMac() 261 System.arraycopy(nonce, 0, iv, 1, nonce.length); in processPacket() 293 System.arraycopy(in, inIndex, block, 0, inLen + inOff - inIndex); in processPacket() 297 System.arraycopy(block, 0, output, outIndex, inLen + inOff - inIndex); in processPacket() 299 System.arraycopy(encMac, 0, output, outOff + inLen, macSize); in processPacket() 313 System.arraycopy(in, inOff + outputLen, macBlock, 0, macSize); in processPacket() 331 System.arraycopy(in, inIndex, block, 0, outputLen - (inIndex - inOff)); in processPacket() 335 System.arraycopy(block, 0, output, outIndex, outputLen - (inIndex - inOff)); in processPacket() 370 System.arraycopy(nonce, 0, b0, 1, nonce.length); in calculateMac()
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
D | ObjectVector.java | 97 System.arraycopy(v.m_map, 0, m_map, 0, m_firstFree); in ObjectVector() 135 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); in addElement() 159 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); in addElements() 185 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); in addElements() 212 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); in insertElementAt() 219 System.arraycopy(m_map, at, m_map, at + 1, m_firstFree - at); in insertElementAt() 260 System.arraycopy(m_map, i + 1, m_map, i - 1, m_firstFree - i); in removeElement() 285 System.arraycopy(m_map, i + 1, m_map, i, m_firstFree); in removeElementAt() 414 System.arraycopy(m_map, 0, newMap, 0, m_firstFree); in setToSize()
|
D | IntVector.java | 97 System.arraycopy(v.m_map, 0, m_map, 0, m_firstFree); in IntVector() 135 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); in addElement() 159 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); in addElements() 185 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); in addElements() 212 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); in insertElementAt() 219 System.arraycopy(m_map, at, m_map, at + 1, m_firstFree - at); in insertElementAt() 263 System.arraycopy(m_map, i + 1, m_map, i - 1, m_firstFree - i); in removeElement() 288 System.arraycopy(m_map, i + 1, m_map, i, m_firstFree); in removeElementAt()
|
D | NodeVector.java | 95 System.arraycopy(this.m_map, 0, clone.m_map, 0, this.m_map.length); in clone() 132 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); in addElement() 166 System.arraycopy(m_map, 0, newMap, 0, ff + 1); in push() 260 System.arraycopy(m_map, 0, newMap, 0, m_firstFree); in pushPair() 376 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); in insertElementAt() 383 System.arraycopy(m_map, at, m_map, at + 1, m_firstFree - at); in insertElementAt() 412 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + nNodes); in appendNodes() 417 System.arraycopy(nodes.m_map, 0, m_map, m_firstFree, nNodes); in appendNodes() 478 System.arraycopy(m_map, i + 1, m_map, i - 1, m_firstFree - i); in removeElement() 506 System.arraycopy(m_map, i + 1, m_map, i - 1, m_firstFree - i); in removeElementAt()
|
/external/proguard/src/proguard/util/ |
D | ArrayUtil.java | 396 System.arraycopy(array, 0, in extendArray() 469 System.arraycopy(array, index, in insert() 487 System.arraycopy(array, index + 1, in remove() 512 System.arraycopy(array, 0, in extendArray() 585 System.arraycopy(array, index, in insert() 603 System.arraycopy(array, index + 1, in remove() 628 System.arraycopy(array, 0, in extendArray() 701 System.arraycopy(array, index, in insert() 719 System.arraycopy(array, index + 1, in remove() 744 System.arraycopy(array, 0, in extendArray() [all …]
|
/external/smali/util/src/main/java/org/jf/util/ |
D | SparseIntArray.java | 113 System.arraycopy(mKeys, index + 1, mKeys, index, mSize - (index + 1)); in removeAt() 114 System.arraycopy(mValues, index + 1, mValues, index, mSize - (index + 1)); in removeAt() 138 System.arraycopy(mKeys, 0, nkeys, 0, mKeys.length); in put() 139 System.arraycopy(mValues, 0, nvalues, 0, mValues.length); in put() 147 System.arraycopy(mKeys, i, mKeys, i + 1, mSize - i); in put() 148 System.arraycopy(mValues, i, mValues, i + 1, mSize - i); in put() 233 System.arraycopy(mKeys, 0, nkeys, 0, mKeys.length); in append() 234 System.arraycopy(mValues, 0, nvalues, 0, mValues.length); in append()
|
D | SparseArray.java | 168 System.arraycopy(mKeys, 0, nkeys, 0, mKeys.length); in put() 169 System.arraycopy(mValues, 0, nvalues, 0, mValues.length); in put() 177 System.arraycopy(mKeys, i, mKeys, i + 1, mSize - i); in put() 178 System.arraycopy(mValues, i, mValues, i + 1, mSize - i); in put() 308 System.arraycopy(mKeys, 0, nkeys, 0, mKeys.length); in append() 309 System.arraycopy(mValues, 0, nvalues, 0, mValues.length); in append() 334 System.arraycopy(mKeys, 0, nkeys, 0, mKeys.length); in ensureCapacity() 335 System.arraycopy(mValues, 0, nvalues, 0, mValues.length); in ensureCapacity()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | UnicodeDecompressor.java | 141 System.arraycopy(temp, 0, result, 0, charCount); in decompress() 201 System.arraycopy(byteBuffer, byteBufferStart, in decompress() 275 System.arraycopy(byteBuffer, bytePos, in decompress() 327 System.arraycopy(byteBuffer, bytePos, in decompress() 353 System.arraycopy(byteBuffer, bytePos, in decompress() 384 System.arraycopy(byteBuffer, bytePos, in decompress() 403 System.arraycopy(byteBuffer, bytePos, in decompress() 439 System.arraycopy(byteBuffer, bytePos, in decompress() 460 System.arraycopy(byteBuffer, bytePos, in decompress() 491 System.arraycopy(byteBuffer, bytePos, in decompress() [all …]
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | UnicodeDecompressor.java | 139 System.arraycopy(temp, 0, result, 0, charCount); in decompress() 198 System.arraycopy(byteBuffer, byteBufferStart, in decompress() 272 System.arraycopy(byteBuffer, bytePos, in decompress() 324 System.arraycopy(byteBuffer, bytePos, in decompress() 350 System.arraycopy(byteBuffer, bytePos, in decompress() 381 System.arraycopy(byteBuffer, bytePos, in decompress() 400 System.arraycopy(byteBuffer, bytePos, in decompress() 436 System.arraycopy(byteBuffer, bytePos, in decompress() 457 System.arraycopy(byteBuffer, bytePos, in decompress() 488 System.arraycopy(byteBuffer, bytePos, in decompress() [all …]
|
/external/jetty/src/java/org/eclipse/jetty/util/ |
D | ArrayQueue.java | 261 System.arraycopy(_elements, i + 1, _elements, i, _nextSlot - i); in remove() 269 System.arraycopy(_elements, i + 1, _elements, i, _elements.length - i - 1); in remove() 273 System.arraycopy(_elements, 1, _elements, 0, _nextSlot - 1); in remove() 337 System.arraycopy(_elements, i, _elements, i + 1, _nextSlot - i); in add() 346 System.arraycopy(_elements, 0, _elements, 1, _nextSlot); in add() 350 System.arraycopy(_elements, i, _elements, i + 1, _elements.length - i - 1); in add() 369 System.arraycopy(_elements, _nextE, elements, 0, split); in grow() 371 System.arraycopy(_elements, 0, elements, split, _nextSlot); in grow()
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/ |
D | ListGenerators.java | 84 System.arraycopy(elements, 0, all, 0, elements.length); in create() 85 System.arraycopy(suffix, 0, all, elements.length, suffix.length); in create() 96 System.arraycopy(prefix, 0, all, 0, 2); in create() 97 System.arraycopy(elements, 0, all, 2, elements.length); in create() 110 System.arraycopy(prefix, 0, all, 0, 2); in create() 111 System.arraycopy(elements, 0, all, 2, elements.length); in create() 112 System.arraycopy(suffix, 0, all, 2 + elements.length, 2); in create()
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/ |
D | FirstOrderConverter.java | 107 System.arraycopy(y, 0, z, 0, dimension); in computeDerivatives() 108 System.arraycopy(y, dimension, zDot, 0, dimension); in computeDerivatives() 114 System.arraycopy(zDot, 0, yDot, 0, dimension); in computeDerivatives() 115 System.arraycopy(zDDot, 0, yDot, dimension, dimension); in computeDerivatives()
|
/external/emma/core/java12/com/vladium/util/ |
D | ByteArrayOStream.java | 63 System.arraycopy (mbuf, 0, newbuf, 0, pos); in write2() 87 System.arraycopy (mbuf, 0, newbuf, 0, pos); in write3() 112 System.arraycopy (mbuf, 0, newbuf, 0, pos); in write4() 216 System.arraycopy (mbuf, 0, result, 0, pos); in copyByteArray() 255 System.arraycopy (mbuf, 0, newbuf, 0, pos); in write() 284 System.arraycopy (mbuf, 0, newbuf, 0, pos); in write() 292 System.arraycopy (buf, offset, mbuf, pos, length); in write()
|
/external/proguard/src/proguard/classfile/editor/ |
D | ClassEditor.java | 61 System.arraycopy(interfaces, 0, in addInterface() 87 System.arraycopy(interfaces, interfaceIndex+1, in removeInterface() 129 System.arraycopy(fields, 0, in addField() 157 System.arraycopy(fields, fieldIndex+1, in removeField() 199 System.arraycopy(methods, 0, in addMethod() 227 System.arraycopy(methods, methodIndex+1, in removeMethod()
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/polynomials/ |
D | PolynomialFunctionNewtonForm.java | 79 System.arraycopy(a, 0, this.a, 0, a.length); in PolynomialFunctionNewtonForm() 80 System.arraycopy(c, 0, this.c, 0, c.length); in PolynomialFunctionNewtonForm() 114 System.arraycopy(a, 0, out, 0, a.length); in getNewtonCoefficients() 127 System.arraycopy(c, 0, out, 0, c.length); in getCenters() 143 System.arraycopy(coefficients, 0, out, 0, coefficients.length); in getCoefficients()
|
/external/guava/guava/src/com/google/common/collect/ |
D | ObjectArrays.java | 74 System.arraycopy(first, 0, result, 0, first.length); in concat() 75 System.arraycopy(second, 0, result, first.length, second.length); in concat() 91 System.arraycopy(array, 0, result, 1, array.length); in concat() 113 System.arraycopy( in arraysCopyOf() 172 System.arraycopy(src, offset, dst, 0, len); in toArrayImpl() 204 System.arraycopy(elements, offset, result, 0, length); in copyAsObjectArray()
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/jacobians/ |
D | FirstOrderIntegratorWithJacobians.java | 240 System.arraycopy(y0, 0, z, 0, n); in integrate() 247 System.arraycopy(dY0dP[i], 0, z, n * (n + 1) + i * k, k); in integrate() 275 System.arraycopy(z, 0, y, 0, n); in dispatchCompoundState() 279 System.arraycopy(z, n * (i + 1), dydy0[i], 0, n); in dispatchCompoundState() 284 System.arraycopy(z, n * (n + 1) + i * k, dydp[i], 0, k); in dispatchCompoundState() 407 System.arraycopy(z, 0, y, 0, n); in computeDerivatives() 415 System.arraycopy(yDot, 0, zDot, 0, n); in computeDerivatives() 660 System.arraycopy(extendedState, 0, y, 0, y.length); in getInterpolatedY() 670 System.arraycopy(extendedState, start, dydy0[i], 0, n); in getInterpolatedDyDy0() 683 System.arraycopy(extendedState, start, dydp[i], 0, k); in getInterpolatedDyDp() [all …]
|
/external/caliper/examples/src/main/java/examples/ |
D | CopyArrayBenchmark.java | 110 System.arraycopy(array, 0, copy, 0, array.length); in copy() 115 System.arraycopy(array, 0, copy, 0, array.length); in copy() 120 System.arraycopy(array, 0, copy, 0, array.length); in copy() 125 System.arraycopy(array, 0, copy, 0, array.length); in copy() 130 System.arraycopy(array, 0, copy, 0, array.length); in copy() 135 System.arraycopy(array, 0, copy, 0, array.length); in copy() 140 System.arraycopy(array, 0, copy, 0, array.length); in copy() 145 System.arraycopy(array, 0, copy, 0, array.length); in copy() 150 System.arraycopy(array, 0, copy, 0, array.length); in copy()
|