Searched refs:bytes_in (Results 1 - 11 of 11) sorted by relevance

/freebsd-current/usr.bin/gzip/
H A Dunzstd.c31 unzstd(int in, int out, char *pre, size_t prelen, off_t *bytes_in) argument
55 if (bytes_in != NULL)
56 *bytes_in = prelen;
72 if (bytes_in != NULL)
73 *bytes_in += res;
H A Dunbzip2.c37 unbzip2(int in, int out, char *pre, size_t prelen, off_t *bytes_in) argument
64 if (bytes_in)
65 *bytes_in = prelen;
80 if (bytes_in)
81 *bytes_in += n;
H A Dunpack.c135 accepted_bytes(off_t *bytes_in, off_t newbytes) argument
138 if (bytes_in != NULL)
139 (*bytes_in) += newbytes;
149 unpack_parse_header(int in, int out, char *pre, size_t prelen, off_t *bytes_in, argument
166 accepted_bytes(bytes_in, PACK_HEADER_LENGTH);
208 accepted_bytes(bytes_in, unpackd->treelevels);
236 accepted_bytes(bytes_in, unpackd->symbolsin[i]);
253 unpack_decode(const unpack_descriptor_t *unpackd, off_t *bytes_in) argument
272 accepted_bytes(bytes_in, 1);
317 unpack(int in, int out, char *pre, size_t prelen, off_t *bytes_in) argument
[all...]
H A Dunxz.c41 unxz(int i, int o, char *pre, size_t prelen, off_t *bytes_in) argument
51 if (bytes_in == NULL)
52 bytes_in = &bp;
61 *bytes_in = strm.avail_in;
89 *bytes_in += strm.avail_in;
H A Dunlz.c612 unlz(int fin, int fout, char *pre, size_t prelen, off_t *bytes_in) argument
641 return lz_decode(fin, fout, dict_size, bytes_in);
/freebsd-current/contrib/elftoolchain/libdwarf/
H A Ddwarf_loclist.c226 dwarf_loclist_from_expr(Dwarf_Debug dbg, Dwarf_Ptr bytes_in, argument
231 return (dwarf_loclist_from_expr_a(dbg, bytes_in, bytes_len,
236 dwarf_loclist_from_expr_a(Dwarf_Debug dbg, Dwarf_Ptr bytes_in, argument
264 return (dwarf_loclist_from_expr_b(dbg, bytes_in, bytes_len, addr_size,
269 dwarf_loclist_from_expr_b(Dwarf_Debug dbg, Dwarf_Ptr bytes_in, argument
277 if (dbg == NULL || bytes_in == NULL || bytes_len == 0 ||
293 ret = _dwarf_loc_fill_locexpr(dbg, &ld, bytes_in, bytes_len, addr_size,
/freebsd-current/crypto/openssl/test/
H A Dbio_prefix_text.c77 size_t bytes_in; local
80 if (!BIO_read_ex(bio_in, buf, sizeof(buf), &bytes_in))
83 while (bytes_out < bytes_in) {
86 if (!BIO_write_ex(chain[amount - 1], buf, bytes_in, &bytes))
/freebsd-current/sys/netgraph/
H A Dng_macfilter.h83 u_int64_t bytes_in; /* bytes in from upstream */ member in struct:ngm_macfilter_mac
91 { "bytes_in", &ng_parse_uint64_type }, \
H A Dng_macfilter.c339 p->bytes_in = p->bytes_out = 0;
583 mf_macs[i].bytes_in += m->m_len - ETHER_HDR_LEN;
589 MAC_S_ARGS(ether), m->m_len - ETHER_HDR_LEN, mf_macs[i].bytes_in,
/freebsd-current/sys/net/
H A Dif_ovpn.c123 uint64_t bytes_in; member in struct:ovpn_peer_counters
421 n->counters.bytes_in = counter_u64_fetch(OVPN_PEER_COUNTER(peer, bytes_in));
1281 OVPN_PEER_COUNTER_OUT("bytes", bytes_in, bytes_out);
1333 nvlist_add_number(nvl, "in", n->counters.bytes_in);
1540 OVPN_PEER_COUNTER_ADD(peer, bytes_in, m->m_pkthdr.len);
/freebsd-current/contrib/libarchive/libarchive/
H A Darchive_read_support_format_7zip.c3273 size_t bytes_in, bytes_out; local
3296 bytes_in = bytes_avail;
3297 if (bytes_in > zip->pack_stream_inbytes_remaining)
3298 bytes_in = (size_t)zip->pack_stream_inbytes_remaining;
3301 buff_in, &bytes_in);
3312 zip->pack_stream_inbytes_remaining -= bytes_in;
3317 zip->pack_stream_bytes_unconsumed = bytes_in;
3332 if (end_of_data || (bytes_in == 0 && bytes_out == 0)) {

Completed in 228 milliseconds