Searched refs:rbytes (Results 1 - 12 of 12) sorted by relevance

/freebsd-current/sys/dev/gve/
H A Dgve_sysctl.c51 &stats->rbytes, "Bytes received");
241 uint64_t *rbytes, uint64_t *rx_dropped_pkt, uint64_t *tpackets,
251 *rbytes += counter_u64_fetch(rxqstats->rbytes);
240 gve_accum_stats(struct gve_priv *priv, uint64_t *rpackets, uint64_t *rbytes, uint64_t *rx_dropped_pkt, uint64_t *tpackets, uint64_t *tbytes, uint64_t *tx_dropped_pkt) argument
H A Dgve.h219 counter_u64_t rbytes; member in struct:gve_rxq_stats
453 uint64_t *rbytes, uint64_t *rx_dropped_pkt, uint64_t *tpackets,
H A Dgve_main.c321 uint64_t rbytes = 0; local
328 gve_accum_stats(priv, &rpackets, &rbytes, &rx_dropped_pkt, &tpackets,
339 return (rbytes);
H A Dgve_rx.c581 counter_u64_add_protected(rx->stats.rbytes, ctx->total_size);
/freebsd-current/sys/contrib/openzfs/lib/libzpool/
H A Dutil.c55 char rops[6], wops[6], rbytes[6], wbytes[6], rerr[6], werr[6], cerr[6]; local
92 nicenum(vs->vs_bytes[ZIO_TYPE_READ] / sec, rbytes,
93 sizeof (rbytes));
107 rops, wops, rbytes, wbytes, rerr, werr, cerr);
/freebsd-current/contrib/libarchive/libarchive_fe/
H A Dpassphrase.c86 DWORD mode, rbytes; local
111 success = ReadFile(hStdin, buf, (DWORD)bufsiz - 1, &rbytes, NULL);
115 buf[rbytes] = '\0';
/freebsd-current/contrib/libarchive/libarchive/
H A Darchive_read_support_format_cab.c82 unsigned char rbytes[4]; member in struct:lzx_dec
1767 int64_t cbytes, rbytes; local
1770 rbytes = cab_minimum_consume_cfdata(a, consumed_bytes);
1771 if (rbytes < 0)
1775 while (rbytes > 0) {
1785 if (cbytes > rbytes)
1786 cbytes = rbytes;
1787 rbytes -= cbytes;
1809 rbytes = 0;
1860 int64_t cbytes, rbytes; local
[all...]
H A Darchive_read_support_format_7zip.c2939 header_bytes(struct archive_read *a, size_t rbytes) argument
2944 if (zip->header_bytes_remaining < rbytes)
2950 p = __archive_read_ahead(a, rbytes, NULL);
2953 zip->header_bytes_remaining -= rbytes;
2954 zip->pack_stream_bytes_unconsumed = rbytes;
2959 bytes = read_stream(a, &buff, rbytes, rbytes);
2967 zip->header_crc32 = crc32(zip->header_crc32, p, (unsigned)rbytes);
H A Darchive_string.c2067 size_t rbytes; local
2069 rbytes = sizeof(utf8_replacement_char);
2071 rbytes = 2;
2073 if (avail < rbytes) {
2076 (remaining * to_size) + rbytes;
2090 outp += rbytes;
2091 avail -= rbytes;
/freebsd-current/usr.bin/gzip/
H A Dgzip.c1375 ssize_t rbytes; local
1408 rbytes = read(fd, fourbytes, sizeof fourbytes);
1409 if (rbytes != sizeof fourbytes) {
1413 if (rbytes == -1)
1419 infile_newdata(rbytes);
1443 rbytes = pread(fd, name, sizeof(name) - 1, GZIP_ORIGNAME);
1444 if (rbytes < 0) {
1452 name[rbytes] = '\0';
1469 file, (int) rbytes, nf);
/freebsd-current/contrib/libarchive/libarchive/test/
H A Dmain.c2382 size_t rbytes; local
2393 while ((rbytes = fread(buff, 1, sizeof(buff), in)) > 0) {
2394 if (fwrite(buff, 1, rbytes, out) != rbytes) {
/freebsd-current/contrib/libarchive/test_utils/
H A Dtest_main.c3237 size_t rbytes; local
3248 while ((rbytes = fread(buff, 1, sizeof(buff), in)) > 0) {
3249 if (fwrite(buff, 1, rbytes, out) != rbytes) {

Completed in 318 milliseconds