Lines Matching refs:b
63 struct gnet_stats_basic_packed *b) in est_fetch_counters() argument
65 memset(b, 0, sizeof(*b)); in est_fetch_counters()
69 __gnet_stats_copy_basic(e->running, b, e->cpu_bstats, e->bstats); in est_fetch_counters()
79 struct gnet_stats_basic_packed b; in est_timer() local
82 est_fetch_counters(est, &b); in est_timer()
83 brate = (b.bytes - est->last_bytes) << (10 - est->intvl_log); in est_timer()
86 rate = (u64)(b.packets - est->last_packets) << (10 - est->intvl_log); in est_timer()
94 est->last_bytes = b.bytes; in est_timer()
95 est->last_packets = b.packets; in est_timer()
133 struct gnet_stats_basic_packed b; in gen_new_estimator() local
164 est_fetch_counters(est, &b); in gen_new_estimator()
167 est->last_bytes = b.bytes; in gen_new_estimator()
168 est->last_packets = b.packets; in gen_new_estimator()