Lines Matching full:time
51 static inline void update_range(struct list_head *head_p, __u64 time)
58 if (time < rip->end)
61 if (BIT_TIME(time - rip->end) < range_delta) {
62 rip->end = time;
68 rip->start = rip->end = time;
72 static inline void update_qregion(struct region_info *reg, __u64 time)
74 update_range(®->qranges, time);
77 static inline void update_cregion(struct region_info *reg, __u64 time)
79 update_range(®->cranges, time);
117 static inline void update_lq(__u64 *last_q, struct avg_info *avg, __u64 time)
120 avg_update(avg, (time > *last_q) ? time - *last_q : 1);
121 *last_q = time;
127 update_lq(&dip->last_q, &dip->avgs.q2q_dm, iop->t.time);
129 update_lq(&dip->last_q, &dip->avgs.q2q, iop->t.time);
130 update_qregion(&dip->regions, iop->t.time);
367 (int)SECONDS(iop->t.time),
368 (unsigned long)NANO_SECONDS(iop->t.time),
377 (int)SECONDS(a_iop->t.time),
378 (unsigned long)NANO_SECONDS(a_iop->t.time),