/freebsd/usr.bin/gzip/ |
H A D | unpack.c | 135 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() 149 unpack_parse_header(int in, int out, char *pre, size_t prelen, off_t *bytes_in, in unpack_parse_header() argument 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 [all …]
|
H A D | unzstd.c | 31 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 D | unbzip2.c | 37 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 D | unxz.c | 41 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 D | unlz.c | 612 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 D | dwarf_loclist.c | 226 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 D | bio_prefix_text.c | 77 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 D | ng_macfilter.h | 83 u_int64_t bytes_in; /* bytes in from upstream */ member
|
H A D | ng_macfilter.c | 339 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/dev/mlx5/mlx5_accel/ |
H A D | mlx5_ipsec.c | 518 u64 bytes_in, bytes_out; in mlx5e_if_sa_cnt() local 526 &bytes_in, &packets_in); in mlx5e_if_sa_cnt() 530 lt->bytes = bytes_in + bytes_out; in mlx5e_if_sa_cnt()
|
/freebsd/sys/net/ |
H A D | if_ovpn.c | 123 uint64_t bytes_in; member 417 n->counters.bytes_in = counter_u64_fetch(OVPN_PEER_COUNTER(peer, bytes_in)); in ovpn_notify_del_peer() 1290 OVPN_PEER_COUNTER_OUT("bytes", bytes_in, bytes_out); in ovpn_get_peer_stats() 1342 nvlist_add_number(nvl, "in", n->counters.bytes_in); in ovpn_notif_add_counters() 1549 OVPN_PEER_COUNTER_ADD(peer, bytes_in, m->m_pkthdr.len); in ovpn_finish_rx()
|
/freebsd/contrib/libarchive/libarchive/ |
H A D | archive_read_support_format_7zip.c | 3296 size_t bytes_in, bytes_out; in extract_pack_stream() local 3319 bytes_in = bytes_avail; in extract_pack_stream() 3320 if (bytes_in > zip->pack_stream_inbytes_remaining) in extract_pack_stream() 3321 bytes_in = (size_t)zip->pack_stream_inbytes_remaining; in extract_pack_stream() 3324 buff_in, &bytes_in); in extract_pack_stream() 3335 zip->pack_stream_inbytes_remaining -= bytes_in; in extract_pack_stream() 3340 zip->pack_stream_bytes_unconsumed = bytes_in; in extract_pack_stream() 3355 if (end_of_data || (bytes_in == 0 && bytes_out == 0)) { in extract_pack_stream()
|