HomeSort by relevance Sort by last modified time
    Searched refs:copylen (Results 1 - 10 of 10) sorted by null

  /libcore/luni/src/main/java/java/io/
ByteArrayInputStream.java 192 int copylen = this.count - pos < length ? this.count - pos : length;
193 System.arraycopy(this.buf, pos, buffer, offset, copylen);
194 pos += copylen;
195 return copylen;
StringBufferInputStream.java 124 int copylen = count - pos < length ? count - pos : length;
125 for (int i = 0; i < copylen; i++) {
128 pos += copylen;
129 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/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/elfutils/libebl/
eblstrtab.c 311 size_t copylen; local
334 copylen = nulllen;
335 copystrings (st->root, &endp, &copylen);
336 assert (copylen == st->total + nulllen);
eblgstrtab.c 322 size_t copylen; local
345 copylen = nulllen;
346 copystrings (st->root, &endp, &copylen);
347 assert (copylen == st->total * st->width + nulllen);
eblwstrtab.c 311 size_t copylen; local
334 copylen = sizeof (wchar_t) * nulllen;
335 copystrings (st->root, &endp, &copylen);
336 assert (copylen == (st->total + nulllen) * sizeof (wchar_t));
  /libcore/luni/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/quake/quake/src/WinQuake/
net_ipx.cpp 451 int copylen; local
471 copylen = ntohs(rcvbuf->header.length) - (sizeof(int) + sizeof(IPXheader));
472 if (len < copylen)
473 Sys_Error("IPX_Read: buffer too small (%d vs %d)\n", len, copylen);
474 Q_memcpy(buf, rcvbuf->data, copylen);
491 return copylen;
  /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);

Completed in 684 milliseconds