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

/freebsd-13-stable/usr.bin/gzip/
H A Dunbzip2.c39 unbzip2(int in, int out, char *pre, size_t prelen, off_t *bytes_in) argument
66 if (bytes_in)
67 *bytes_in = prelen;
82 if (bytes_in)
83 *bytes_in += n;
H A Dunpack.c138 accepted_bytes(off_t *bytes_in, off_t newbytes) argument
141 if (bytes_in != NULL)
142 (*bytes_in) += newbytes;
152 unpack_parse_header(int in, int out, char *pre, size_t prelen, off_t *bytes_in, argument
169 accepted_bytes(bytes_in, PACK_HEADER_LENGTH);
211 accepted_bytes(bytes_in, unpackd->treelevels);
239 accepted_bytes(bytes_in, unpackd->symbolsin[i]);
256 unpack_decode(const unpack_descriptor_t *unpackd, off_t *bytes_in) argument
275 accepted_bytes(bytes_in, 1);
320 unpack(int in, int out, char *pre, size_t prelen, off_t *bytes_in) argument
[all...]
H A Dunxz.c43 unxz(int i, int o, char *pre, size_t prelen, off_t *bytes_in) argument
53 if (bytes_in == NULL)
54 bytes_in = &bp;
63 *bytes_in = strm.avail_in;
91 *bytes_in += strm.avail_in;
H A Dunlz.c614 unlz(int fin, int fout, char *pre, size_t prelen, off_t *bytes_in) argument
643 return lz_decode(fin, fout, dict_size, bytes_in);
/freebsd-13-stable/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-13-stable/sys/netgraph/
H A Dng_macfilter.h85 u_int64_t bytes_in; /* bytes in from upstream */ member in struct:ngm_macfilter_mac
93 { "bytes_in", &ng_parse_uint64_type }, \
H A Dng_macfilter.c341 p->bytes_in = p->bytes_out = 0;
585 mf_macs[i].bytes_in += m->m_len - ETHER_HDR_LEN;
591 MAC_S_ARGS(ether), m->m_len - ETHER_HDR_LEN, mf_macs[i].bytes_in,
/freebsd-13-stable/contrib/libarchive/libarchive/
H A Darchive_read_support_format_7zip.c3103 size_t bytes_in, bytes_out; local
3126 bytes_in = bytes_avail;
3127 if (bytes_in > zip->pack_stream_inbytes_remaining)
3128 bytes_in = (size_t)zip->pack_stream_inbytes_remaining;
3131 buff_in, &bytes_in);
3142 zip->pack_stream_inbytes_remaining -= bytes_in;
3147 zip->pack_stream_bytes_unconsumed = bytes_in;
3162 if (end_of_data || (bytes_in == 0 && bytes_out == 0)) {

Completed in 100 milliseconds