Lines Matching refs:stats
143 static void bsd_comp_stats(void *state, struct compstat *stats);
265 bsd_comp_stats(state, stats) in bsd_comp_stats() argument
267 struct compstat *stats;
272 stats->unc_bytes = db->uncomp_bytes;
273 stats->unc_packets = db->uncomp_count;
274 stats->comp_bytes = db->comp_bytes;
275 stats->comp_packets = db->comp_count;
276 stats->inc_bytes = db->incomp_bytes;
277 stats->inc_packets = db->incomp_count;
278 stats->ratio = db->in_count;
280 if (stats->ratio <= 0x7fffff)
281 stats->ratio <<= 8;
285 stats->ratio /= out;