Searched refs:tocopy (Results 1 - 14 of 14) sorted by relevance

/macosx-10.10/libarchive-30/libarchive/libarchive/
H A Darchive_write_set_compression_gzip.c293 unsigned tocopy; local
310 tocopy = a->bytes_per_block -
312 while (tocopy > 0 && tocopy < (unsigned)a->bytes_per_block) {
314 state->stream.avail_in = tocopy < a->null_length ?
315 tocopy : a->null_length;
319 tocopy -= state->stream.avail_in;
341 tocopy = 8;
342 if (tocopy > state->stream.avail_out)
343 tocopy
[all...]
H A Darchive_write_set_compression_bzip2.c256 unsigned tocopy; local
272 tocopy = a->bytes_per_block -
274 while (tocopy > 0 && tocopy < (unsigned)a->bytes_per_block) {
276 state->stream.avail_in = tocopy < a->null_length ?
277 tocopy : a->null_length;
279 tocopy -= state->stream.avail_in;
H A Darchive_write_set_compression_xz.c288 unsigned tocopy; local
304 tocopy = a->bytes_per_block -
306 while (tocopy > 0 && tocopy < (unsigned)a->bytes_per_block) {
308 state->stream.avail_in = tocopy < a->null_length ?
309 tocopy : a->null_length;
311 tocopy -= state->stream.avail_in;
H A Darchive_write_set_compression_compress.c428 size_t tocopy; local
442 tocopy = a->bytes_per_block -
444 if (tocopy > a->null_length)
445 tocopy = a->null_length;
447 tocopy);
H A Darchive_read.c960 size_t tocopy; local
1096 tocopy = (filter->buffer + filter->buffer_size)
1099 if (tocopy + filter->avail > min)
1100 tocopy = min - filter->avail;
1102 if (tocopy > filter->client_avail)
1103 tocopy = filter->client_avail;
1106 tocopy);
1108 filter->client_next += tocopy;
1109 filter->client_avail -= tocopy;
1111 filter->avail += tocopy;
[all...]
/macosx-10.10/cxxfilt-11/cxxfilt/binutils/
H A Dar.c802 size_t tocopy = size - ncopied;
803 if (tocopy > BUFSIZE)
804 tocopy = BUFSIZE;
806 nread = bfd_bread (cbuf, (bfd_size_type) tocopy, abfd);
807 if (nread != tocopy)
817 ncopied += tocopy;
837 size_t nread, tocopy;
870 tocopy = size - ncopied;
871 if (tocopy > BUFSIZE)
872 tocopy
799 size_t tocopy = size - ncopied; local
834 size_t nread, tocopy; local
[all...]
H A Dobjcopy.c1221 int tocopy;
1254 tocopy = size - ncopied;
1255 if (tocopy > BUFSIZE)
1256 tocopy = BUFSIZE;
1258 if (bfd_bread (cbuf, (bfd_size_type) tocopy, ibfd)
1259 != (bfd_size_type) tocopy)
1266 if (bfd_bwrite (cbuf, (bfd_size_type) tocopy, obfd)
1267 != (bfd_size_type) tocopy)
1274 ncopied += tocopy;
1219 int tocopy; local
/macosx-10.10/libpcap-48/libpcap/
H A Dpcap-darwin.c181 size_t tocopy; local
193 tocopy = pktap_param - device;
195 tocopy = strlen(device);
196 if (tocopy + 1 > PKTAP_IFXNAMESIZE) {
201 bcopy(device, ifname, tocopy);
202 ifname[tocopy] = 0;
/macosx-10.10/passwordserver_sasl-193/cyrus_sasl/plugins/
H A Dplugin_common.c632 unsigned int tocopy; local
644 tocopy = (inputlen > text->needsize) ? text->needsize : inputlen;
645 memcpy(text->sizebuf + 4 - text->needsize, input, tocopy);
646 text->needsize -= tocopy;
648 input += tocopy;
649 inputlen -= tocopy;
/macosx-10.10/bash-94.1.2/bash-3.2/lib/malloc/
H A Dmalloc.c979 register u_bits32_t tocopy; local
1020 m = (char *)mem + (tocopy = p->mh_nbytes);
1031 _mstats.bytesreq += (n < tocopy) ? 0 : n - tocopy;
1056 if (n < tocopy)
1057 tocopy = n;
1065 FASTCOPY (mem, m, tocopy);
/macosx-10.10/xnu-2782.1.97/bsd/kern/
H A Dkpi_socket.c703 unsigned int tocopy; local
706 tocopy = m->m_len;
709 tocopy = clen;
711 memcpy(ctlbuf, mtod(m, caddr_t), tocopy);
712 ctlbuf += tocopy;
713 clen -= tocopy;
H A Duipc_syscalls.c1653 unsigned int tocopy; local
1691 tocopy = tmp_space;
1694 tocopy = len;
1696 error = copyout(tmp_buffer, ctlbuf, tocopy);
1707 tocopy = cp_size;
1710 tocopy = len;
1714 tocopy);
1720 ctlbuf += tocopy;
1721 len -= tocopy;
/macosx-10.10/zsh-61/zsh/Src/Zle/
H A Dzle_keymap.c307 newkeymap(Keymap tocopy, char *kmname) argument
314 if(tocopy) {
316 km->first[i] = refthingy(tocopy->first[i]);
318 scanhashtable(tocopy->multi, 0, 0, 0, scancopykeys, 0);
/macosx-10.10/apache-793/httpd/support/
H A Dab.c1465 int tocopy = (space < r) ? space : r; local
1479 c->cbx += tocopy;
1480 space -= tocopy;
1573 c->bread += c->cbx - (s + l - c->cbuff) + r - tocopy;

Completed in 354 milliseconds