HomeSort by relevance Sort by last modified time
    Searched full:copylen (Results 1 - 25 of 27) sorted by null

1 2

  /libcore/luni/src/main/java/java/io/
StringBufferInputStream.java 90 int copylen = count - pos < byteCount ? count - pos : byteCount;
91 for (int i = 0; i < copylen; ++i) {
94 pos += copylen;
95 return copylen;
ByteArrayInputStream.java 155 int copylen = this.count - pos < byteCount ? this.count - pos : byteCount;
156 System.arraycopy(this.buf, pos, buffer, byteOffset, copylen);
157 pos += copylen;
158 return copylen;
  /external/dropbear/
random.c 183 unsigned int copylen; local
200 copylen = MIN(len, SHA1_HASH_SIZE);
201 memcpy(buf, hash, copylen);
202 len -= copylen;
203 buf += copylen;
  /external/chromium_org/third_party/openssl/openssl/crypto/asn1/
bio_asn1.c 101 int copylen; member in struct:BIO_ASN1_BUF_CTX_t
172 ctx->copylen = 0;
241 ctx->copylen = inl;
265 if (inl > ctx->copylen)
266 wrmax = ctx->copylen;
273 ctx->copylen -= ret;
277 if (ctx->copylen == 0)
  /external/openssl/crypto/asn1/
bio_asn1.c 101 int copylen; member in struct:BIO_ASN1_BUF_CTX_t
172 ctx->copylen = 0;
241 ctx->copylen = inl;
265 if (inl > ctx->copylen)
266 wrmax = ctx->copylen;
273 ctx->copylen -= ret;
277 if (ctx->copylen == 0)
  /external/chromium_org/chrome/installer/mac/third_party/bsdiff/
goobspatch.c 165 size_t copylen; local
221 copylen = xzf->read_out_len;
222 if (copylen > len)
223 copylen = len;
224 memcpy(buf, xzf->read_out, copylen);
225 nread += copylen;
226 buf += copylen;
227 len -= copylen;
228 xzf->read_out += copylen;
229 xzf->read_out_len -= copylen;
    [all...]
  /bootable/recovery/minzip/
Bits.h 236 size_t copyLen = (length < bufLen) ? length : bufLen-1;
238 memcpy(buf, *ppSrc, copyLen);
239 buf[copyLen] = '\0';
  /dalvik/vm/
Bits.h 237 size_t copyLen = (length < bufLen) ? length : bufLen-1;
239 memcpy(buf, *ppSrc, copyLen);
240 buf[copyLen] = '\0';
  /external/elfutils/libebl/
eblwstrtab.c 347 size_t copylen; local
370 copylen = sizeof (wchar_t) * nulllen;
371 copystrings (st->root, &endp, &copylen);
372 assert (copylen == (st->total + nulllen) * sizeof (wchar_t));
eblstrtab.c 354 size_t copylen = nulllen; local
355 copystrings (st->root, &endp, &copylen);
356 assert (copylen == st->total + nulllen);
eblgstrtab.c 353 size_t copylen; local
376 copylen = nulllen;
377 copystrings (st->root, &endp, &copylen);
378 assert (copylen == st->total * st->width + nulllen);
  /external/apache-xml/src/main/java/org/apache/xml/utils/
SuballocatedIntVector.java 287 int copylen=m_blocksize-offset-1; local
297 System.arraycopy(block, offset , block, offset+1, copylen);
356 int copylen=m_blocksize-offset-1; local
361 System.arraycopy(block, offset+1, block, offset, copylen);
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/channel/
ChannelManager.java 933 int copylen = 0; local
978 copylen = (stdoutAvail > len) ? len : stdoutAvail;
979 System.arraycopy(c.stdoutBuffer, c.stdoutReadpos, target, off, copylen);
980 c.stdoutReadpos += copylen;
992 copylen = (stderrAvail > len) ? len : stderrAvail;
993 System.arraycopy(c.stderrBuffer, c.stderrReadpos, target, off, copylen);
994 c.stderrReadpos += copylen;
1006 return copylen;
1051 return copylen;
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA2/
dsa_new.cpp 75 const TInt copyLen = aUpdateRect.Width();
85 iDsa.Copy(reinterpret_cast<TUint32*>(targetPtr), reinterpret_cast<const TUint8*>(source), copyLen, height);
96 iDsa.Copy(reinterpret_cast<TUint32*>(targetPtr), reinterpret_cast<const TUint8*>(source), copyLen, height);
777 const TInt copyLen = aUpdateRect.Width();
787 iCopyFunction(*this, targetPtr, (TUint8*)source, copyLen, height);
798 iCopyFunction(*this, targetPtr, (TUint8*)source, copyLen, height);
dsa.cpp 417 const TInt copyLen = aUpdateRect.Width();
427 iDsa.Copy(reinterpret_cast<TUint32*>(targetPtr), reinterpret_cast<const TUint8*>(source), copyLen, height);
438 iDsa.Copy(reinterpret_cast<TUint32*>(targetPtr), reinterpret_cast<const TUint8*>(source), copyLen, height);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
IntArray.java 178 int copyLen = oldLen < newLen ? oldLen : newLen;
179 System.arraycopy(m_ints, 0, newInts, 0, copyLen);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
AndroidSpellCheckerService.java 295 final int copyLen = mLength - insertIndex;
297 System.arraycopy(mScores, insertIndex, mScores, insertIndex + 1, copyLen);
  /build/tools/zipalign/
ZipFile.cpp 598 off_t copyLen;
599 copyLen = pSourceEntry->getCompressedLen();
601 copyLen += ZipEntry::kDataDescriptorLen;
603 if (copyPartialFpToFp(mZipFp, pSourceZip->mZipFp, copyLen, NULL)
    [all...]
  /frameworks/base/tools/aapt/
ZipFile.cpp 598 off_t copyLen;
599 copyLen = pSourceEntry->getCompressedLen();
601 copyLen += ZipEntry::kDataDescriptorLen;
603 if (copyPartialFpToFp(mZipFp, pSourceZip->mZipFp, copyLen, NULL)
    [all...]
  /external/ppp/pppd/plugins/rp-pppoe/
if.c 630 int seglen, copylen; local
659 *size = copylen = ((hdr.bh_caplen < sizeof(PPPoEPacket)) ?
661 memcpy(pkt, bpfBuffer + bpfOffset + hdr.bh_hdrlen, copylen);
  /external/chromium_org/third_party/icu/source/common/
uloc_tag.c 827 int32_t copyLen;
908 copyLen = uprv_min(resultLen, typeCapacity);
909 uprv_memcpy(type, resType, copyLen);
912 for (i = 0; i < copyLen; i++) {
    [all...]
  /frameworks/base/services/java/com/android/server/
AlarmManagerService.java 893 int copylen = topFilters.length - pos - 1; local
    [all...]
  /external/icu4c/common/
uloc_tag.c 890 int32_t copyLen;
979 copyLen = uprv_min(resultLen, typeCapacity);
980 uprv_memcpy(type, resType, copyLen);
983 for (i = 0; i < copyLen; i++) {
    [all...]
  /frameworks/base/core/java/android/content/
IntentFilter.java 303 int copyLen = N-(pos+1);
304 if (copyLen > 0) {
305 System.arraycopy(set, pos+1, set, pos, copyLen);
    [all...]
  /external/ipsec-tools/src/libipsec/
key_debug.c 550 printf("sadb_x_packet{ copylen=%u\n", pkt->sadb_x_packet_copylen);

Completed in 1602 milliseconds

1 2