Home
last modified time | relevance | path

Searched refs:arraycopy (Results 1 – 25 of 602) sorted by relevance

12345678910>>...25

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
DArrays.java598 System.arraycopy(data, 0, copy, 0, data.length); in clone()
611 System.arraycopy(data, 0, copy, 0, data.length); in clone()
626 System.arraycopy(data, 0, existing, 0, existing.length); in clone()
672 System.arraycopy(data, 0, copy, 0, data.length); in clone()
685 System.arraycopy(data, 0, copy, 0, data.length); in clone()
700 System.arraycopy(data, 0, existing, 0, existing.length); in clone()
712 System.arraycopy(data, 0, copy, 0, data.length); in clone()
725 System.arraycopy(data, 0, copy, 0, data.length); in clone()
736 System.arraycopy(data, 0, tmp, 0, newLength); in copyOf()
740 System.arraycopy(data, 0, tmp, 0, data.length); in copyOf()
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
DRFC3394WrapEngine.java105 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 …]
DDESedeWrapEngine.java151 System.arraycopy(in, inOff, keyToBeWrapped, 0, inLen); in wrap()
159 System.arraycopy(keyToBeWrapped, 0, WKCKS, 0, keyToBeWrapped.length); in wrap()
160 System.arraycopy(CKS, 0, WKCKS, keyToBeWrapped.length, CKS.length); in wrap()
184 System.arraycopy(this.iv, 0, TEMP2, 0, this.iv.length); in wrap()
185 System.arraycopy(TEMP1, 0, TEMP2, this.iv.length, TEMP1.length); in wrap()
270 System.arraycopy(TEMP2, 0, this.iv, 0, 8); in unwrap()
271 System.arraycopy(TEMP2, 8, TEMP1, 0, TEMP2.length - 8); in unwrap()
291 System.arraycopy(WKCKS, 0, result, 0, WKCKS.length - 8); in unwrap()
292 System.arraycopy(WKCKS, WKCKS.length - 8, CKStoBeVerified, 0, 8); in unwrap()
328 System.arraycopy(digest, 0, result, 0, 8); in calculateCMSKeyChecksum()
/external/sl4a/ScriptingLayerForAndroid/src/de/mud/terminal/
DVDUBuffer.java222 System.arraycopy(charArray[screenBase + l], c, charArray[screenBase + l], c + 1, width - c - 1); in insertChar()
223 System.arraycopy(charAttributes[screenBase + l], c, charAttributes[screenBase + l], c + 1, in insertChar()
242 System.arraycopy(charArray[screenBase + l], c + 1, charArray[screenBase + l], c, width - c in deleteChar()
244 System.arraycopy(charAttributes[screenBase + l], c + 1, charAttributes[screenBase + l], c, in deleteChar()
397 System.arraycopy(charArray, oldBase + l, cbuf, 0, bottom - l - (n - 1)); in insertLine()
398 System.arraycopy(charAttributes, oldBase + l, abuf, 0, bottom - l - (n - 1)); in insertLine()
399 System.arraycopy(cbuf, 0, charArray, oldBase + l + n, bottom - l - (n - 1)); in insertLine()
400 System.arraycopy(abuf, 0, charAttributes, oldBase + l + n, bottom - l - (n - 1)); in insertLine()
432 System.arraycopy(charArray, offset, cbuf, 0, oldBase - offset); in insertLine()
433 System.arraycopy(charAttributes, offset, abuf, 0, oldBase - offset); in insertLine()
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
DCTSBlockCipher.java96 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 …]
DCFBBlockCipher.java74 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()
DOFBBlockCipher.java68 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()
DCCMBlockCipher.java170 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/
DObjectVector.java97 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()
DIntVector.java97 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()
DNodeVector.java95 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/
DArrayUtil.java396 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/
DSparseIntArray.java113 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()
DSparseArray.java168 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/android_icu4j/src/main/java/android/icu/text/
DUnicodeDecompressor.java141 System.arraycopy(temp, 0, result, 0, charCount); in decompress()
200 System.arraycopy(byteBuffer, byteBufferStart, in decompress()
274 System.arraycopy(byteBuffer, bytePos, in decompress()
326 System.arraycopy(byteBuffer, bytePos, in decompress()
352 System.arraycopy(byteBuffer, bytePos, in decompress()
383 System.arraycopy(byteBuffer, bytePos, in decompress()
402 System.arraycopy(byteBuffer, bytePos, in decompress()
438 System.arraycopy(byteBuffer, bytePos, in decompress()
459 System.arraycopy(byteBuffer, bytePos, in decompress()
490 System.arraycopy(byteBuffer, bytePos, in decompress()
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DUnicodeDecompressor.java143 System.arraycopy(temp, 0, result, 0, charCount); in decompress()
203 System.arraycopy(byteBuffer, byteBufferStart, in decompress()
277 System.arraycopy(byteBuffer, bytePos, in decompress()
329 System.arraycopy(byteBuffer, bytePos, in decompress()
355 System.arraycopy(byteBuffer, bytePos, in decompress()
386 System.arraycopy(byteBuffer, bytePos, in decompress()
405 System.arraycopy(byteBuffer, bytePos, in decompress()
441 System.arraycopy(byteBuffer, bytePos, in decompress()
462 System.arraycopy(byteBuffer, bytePos, in decompress()
493 System.arraycopy(byteBuffer, bytePos, in decompress()
[all …]
/external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
DWaveDataRingBuffer.java100 System.arraycopy(data, srcPos + (length - mWaveRecord.length), mWaveRecord, 0, in writeWaveData()
105 System.arraycopy(data, srcPos, mWaveRecord, mIndex, length); in writeWaveData()
115 System.arraycopy(data, srcPos, mWaveRecord, mIndex, availBuff); in writeWaveData()
116 System.arraycopy(data, srcPos + availBuff, mWaveRecord, 0, length - availBuff); in writeWaveData()
134 System.arraycopy(mWaveRecord, 0, outputBuffer, 0, mIndex); in getWaveRecord()
138 System.arraycopy(mWaveRecord, mIndex, outputBuffer, 0, mWaveRecord.length - mIndex); in getWaveRecord()
139 System.arraycopy(mWaveRecord, 0, outputBuffer, mWaveRecord.length - mIndex, mIndex); in getWaveRecord()
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
DListGenerators.java84 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/
DFirstOrderConverter.java107 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/
DByteArrayOStream.java63 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/
DClassEditor.java61 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/
DPolynomialFunctionNewtonForm.java79 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/protobuf/java/core/src/main/java/com/google/protobuf/
DBooleanArrayList.java176 System.arraycopy(array, index, array, index + 1, size - index); in addBoolean()
183 System.arraycopy(array, 0, newArray, 0, index); in addBoolean()
186 System.arraycopy(array, index, newArray, index + 1, size - index); in addBoolean()
224 System.arraycopy(list.array, 0, array, size, list.size); in addAll()
235 System.arraycopy(array, i + 1, array, i, size - i); in remove()
249 System.arraycopy(array, index + 1, array, index, size - index); in remove()
DFloatArrayList.java175 System.arraycopy(array, index, array, index + 1, size - index); in addFloat()
182 System.arraycopy(array, 0, newArray, 0, index); in addFloat()
185 System.arraycopy(array, index, newArray, index + 1, size - index); in addFloat()
223 System.arraycopy(list.array, 0, array, size, list.size); in addAll()
234 System.arraycopy(array, i + 1, array, i, size - i); in remove()
248 System.arraycopy(array, index + 1, array, index, size - index); in remove()
DDoubleArrayList.java177 System.arraycopy(array, index, array, index + 1, size - index); in addDouble()
184 System.arraycopy(array, 0, newArray, 0, index); in addDouble()
187 System.arraycopy(array, index, newArray, index + 1, size - index); in addDouble()
225 System.arraycopy(list.array, 0, array, size, list.size); in addAll()
236 System.arraycopy(array, i + 1, array, i, size - i); in remove()
250 System.arraycopy(array, index + 1, array, index, size - index); in remove()

12345678910>>...25