Home
last modified time | relevance | path

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

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