Lines Matching defs:now
90 * ... |---x---|------| ... |------|-----x (now)
160 * (now) (~1ms ago) (~2ms ago)
181 ___update_load_sum(u64 now, struct sched_avg *sa,
186 delta = now - sa->last_update_time;
192 sa->last_update_time = now;
296 int __update_load_avg_blocked_se(u64 now, struct sched_entity *se)
298 if (___update_load_sum(now, &se->avg, 0, 0, 0)) {
307 int __update_load_avg_se(u64 now, struct cfs_rq *cfs_rq, struct sched_entity *se)
309 if (___update_load_sum(now, &se->avg, !!se->on_rq, se_runnable(se),
321 int __update_load_avg_cfs_rq(u64 now, struct cfs_rq *cfs_rq)
323 if (___update_load_sum(now, &cfs_rq->avg,
347 int update_rt_rq_load_avg(u64 now, struct rq *rq, int running)
349 if (___update_load_sum(now, &rq->avg_rt,
373 int update_dl_rq_load_avg(u64 now, struct rq *rq, int running)
375 if (___update_load_sum(now, &rq->avg_dl,
404 int update_hw_load_avg(u64 now, struct rq *rq, u64 capacity)
406 if (___update_load_sum(now, &rq->avg_hw,
479 u64 now = rq_clock_pelt(rq);
486 return update_rt_rq_load_avg(now, rq, curr_class == &rt_sched_class) |
487 update_dl_rq_load_avg(now, rq, curr_class == &dl_sched_class) |