Home
last modified time | relevance | path

Searched refs:last_bytes (Results 1 – 7 of 7) sorted by relevance

/netbsd/src/usr.sbin/altq/altqstat/
Dqdisc_rio.c56 u_int64_t last_bytes[3]; in rio_stat_loop() local
61 memset(&last_bytes, 0, sizeof last_bytes); /* XXX gcc */ in rio_stat_loop()
121 last_bytes[0], sec)), in rio_stat_loop()
123 last_bytes[1], sec)), in rio_stat_loop()
125 last_bytes[2], sec))); in rio_stat_loop()
127 last_bytes[0] = rio_stats.q_stats[0].xmit_cnt.bytes; in rio_stat_loop()
128 last_bytes[1] = rio_stats.q_stats[1].xmit_cnt.bytes; in rio_stat_loop()
129 last_bytes[2] = rio_stats.q_stats[2].xmit_cnt.bytes; in rio_stat_loop()
Dqdisc_blue.c53 u_int64_t last_bytes; in blue_stat_loop() local
62 last_bytes = 0; in blue_stat_loop()
84 last_bytes, sec))); in blue_stat_loop()
86 last_bytes = blue_stats.xmit_bytes; in blue_stat_loop()
Dqdisc_fifoq.c53 u_int64_t last_bytes; in fifoq_stat_loop() local
63 last_bytes = 0; in fifoq_stat_loop()
81 last_bytes, sec))); in fifoq_stat_loop()
83 last_bytes = get_stats.xmit_cnt.bytes; in fifoq_stat_loop()
Dqdisc_red.c55 u_int64_t last_bytes; in red_stat_loop() local
65 last_bytes = 0; in red_stat_loop()
89 last_bytes, sec))); in red_stat_loop()
99 last_bytes = red_stats.xmit_cnt.bytes; in red_stat_loop()
Dqdisc_wfq.c54 u_quad_t last_bytes; member
121 qinfo[i].last_bytes, sec); in wfq_stat_loop()
122 qinfo[i].last_bytes = qinfo[i].stats.xmit_cnt.bytes; in wfq_stat_loop()
Daltqstat.c206 calc_rate(u_int64_t new_bytes, u_int64_t last_bytes, double interval) in calc_rate() argument
210 rate = (double)(new_bytes - last_bytes) * 8 / interval; in calc_rate()
/netbsd/src/external/gpl3/gcc/dist/gcc/config/arm/
Darm.cc15475 HOST_WIDE_INT in_words_to_go, out_words_to_go, last_bytes; in arm_gen_cpymemqi() local
15500 last_bytes = INTVAL (operands[2]) & 3; in arm_gen_cpymemqi()
15524 (last_bytes == 0 in arm_gen_cpymemqi()
15531 if (last_bytes != 0) in arm_gen_cpymemqi()
15566 gcc_assert (!last_bytes || part_bytes_reg); in arm_gen_cpymemqi()
15568 if (BYTES_BIG_ENDIAN && last_bytes) in arm_gen_cpymemqi()
15574 GEN_INT (8 * (4 - last_bytes)))); in arm_gen_cpymemqi()
15577 while (last_bytes) in arm_gen_cpymemqi()
15581 last_bytes - 1), in arm_gen_cpymemqi()
15582 dstoffset + last_bytes - 1); in arm_gen_cpymemqi()
[all …]