Home | History | Annotate | Download | only in netinet

Lines Matching defs:time_hash

2531 	int time_hash;
2547 BW_METER_TIMEHASH(x, time_hash);
2548 x->bm_time_next = bw_meter_timers[time_hash];
2549 bw_meter_timers[time_hash] = x;
2550 x->bm_time_hash = time_hash;
2560 int time_hash;
2569 time_hash = x->bm_time_hash;
2570 if (time_hash >= BW_METER_BUCKETS)
2573 for (prev = NULL, tmp = bw_meter_timers[time_hash];
2584 bw_meter_timers[time_hash] = x->bm_time_next;
2644 int time_hash;
2646 BW_METER_TIMEHASH(x, time_hash);
2647 if (time_hash == i && process_endtime.tv_sec == now.tv_sec) {
2652 if (++time_hash >= BW_METER_BUCKETS)
2653 time_hash = 0;
2655 x->bm_time_next = bw_meter_timers[time_hash];
2656 bw_meter_timers[time_hash] = x;
2657 x->bm_time_hash = time_hash;