Lines Matching refs:b
67 struct gnet_stats_basic_packed *b) in est_fetch_counters() argument
69 memset(b, 0, sizeof(*b)); in est_fetch_counters()
73 __gnet_stats_copy_basic(e->running, b, e->cpu_bstats, e->bstats); in est_fetch_counters()
83 struct gnet_stats_basic_packed b; in est_timer() local
86 est_fetch_counters(est, &b); in est_timer()
87 brate = (b.bytes - est->last_bytes) << (10 - est->ewma_log - est->intvl_log); in est_timer()
90 rate = (u64)(b.packets - est->last_packets) << (10 - est->ewma_log - est->intvl_log); in est_timer()
98 est->last_bytes = b.bytes; in est_timer()
99 est->last_packets = b.packets; in est_timer()
137 struct gnet_stats_basic_packed b; in gen_new_estimator() local
165 est_fetch_counters(est, &b); in gen_new_estimator()
168 est->last_bytes = b.bytes; in gen_new_estimator()
169 est->last_packets = b.packets; in gen_new_estimator()