Home
last modified time | relevance | path

Searched refs:bytes_total (Results 1 – 4 of 4) sorted by relevance

/freebsd/sys/netinet/cc/
H A Dcc_dctcp.c73 uint32_t bytes_total; /* # of acked bytes during a RTT */ member
135 dctcp_data->bytes_total += bytes_acked; in dctcp_ack_received()
183 dctcp_data->bytes_total = 0; in dctcp_after_idle()
214 dctcp_data->bytes_total = 0; in dctcp_cb_init()
283 dctcp_data->bytes_total = 0; in dctcp_cong_signal()
397 dctcp_data->bytes_total = max(dctcp_data->bytes_total, 1); in dctcp_update_alpha()
412 dctcp_data->bytes_total, MAX_ALPHA_VALUE); in dctcp_update_alpha()
416 dctcp_data->bytes_total = 0; in dctcp_update_alpha()
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DConstString.h400 size_t GetBytesTotal() const { return bytes_total; } in GetBytesTotal()
402 size_t GetBytesUnused() const { return bytes_total - bytes_used; } in GetBytesUnused()
403 size_t bytes_total = 0; member
/freebsd/usr.bin/netstat/
H A Dmbuf.c77 uintmax_t bytes_inuse, bytes_incache, bytes_total; in mbpr() local
279 bytes_total = bytes_inuse + bytes_incache; in mbpr()
284 bytes_inuse / 1024, bytes_incache / 1024, bytes_total / 1024); in mbpr()
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DConstString.cpp170 stats.bytes_total += alloc.getTotalMemory(); in GetMemoryStats()