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

  /dalvik/libcore/luni/src/main/java/java/io/
ByteArrayInputStream.java 196 int copylen = this.count - pos < length ? this.count - pos : length;
197 System.arraycopy(buf, pos, b, offset, copylen);
198 pos += copylen;
199 return copylen;
StringBufferInputStream.java 129 int copylen = count - pos < length ? count - pos : length;
130 for (int i = 0; i < copylen; i++) {
133 pos += copylen;
134 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;
  /dalvik/libcore/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/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));
  /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 460 milliseconds