Lines Matching refs:u64
85 u64 sm1; /* scaled slope of the 1st segment */
86 u64 ism1; /* scaled inverse-slope of the 1st segment */
87 u64 dx; /* the x-projection of the 1st segment */
88 u64 dy; /* the y-projection of the 1st segment */
89 u64 sm2; /* scaled slope of the 2nd segment */
90 u64 ism2; /* scaled inverse-slope of the 2nd segment */
95 u64 x; /* current starting position on x-axis */
96 u64 y; /* current starting position on y-axis */
97 u64 sm1; /* scaled slope of the 1st segment */
98 u64 ism1; /* scaled inverse-slope of the 1st segment */
99 u64 dx; /* the x-projection of the 1st segment */
100 u64 dy; /* the y-projection of the 1st segment */
101 u64 sm2; /* scaled slope of the 2nd segment */
102 u64 ism2; /* scaled inverse-slope of the 2nd segment */
134 u64 cl_total; /* total work in bytes */
135 u64 cl_cumul; /* cumulative work in bytes done by
138 u64 cl_d; /* deadline*/
139 u64 cl_e; /* eligible time */
140 u64 cl_vt; /* virtual time */
141 u64 cl_f; /* time when this class will fit for
143 u64 cl_myf; /* my fit-time (calculated from this
145 u64 cl_cfmin; /* earliest children's fit-time (used
147 u64 cl_cvtmin; /* minimal virtual time among the
150 u64 cl_vtadj; /* intra-period cumulative vt
152 u64 cl_cvtoff; /* largest virtual time seen among
219 eltree_get_mindl(struct hfsc_sched *q, u64 cur_time) in eltree_get_mindl()
283 vttree_firstfit(struct hfsc_class *cl, u64 cur_time) in vttree_firstfit()
300 vttree_get_minvt(struct hfsc_class *cl, u64 cur_time) in vttree_get_minvt()
382 static inline u64
383 seg_x2y(u64 x, u64 sm) in seg_x2y()
385 u64 y; in seg_x2y()
396 static inline u64
397 seg_y2x(u64 y, u64 ism) in seg_y2x()
399 u64 x; in seg_y2x()
413 static u64
416 u64 sm; in m2sm()
418 sm = ((u64)m << SM_SHIFT); in m2sm()
425 static u64
428 u64 ism; in m2ism()
433 ism = ((u64)PSCHED_TICKS_PER_SEC << ISM_SHIFT); in m2ism()
441 static u64
444 u64 dx; in d2dx()
446 dx = ((u64)d * PSCHED_TICKS_PER_SEC); in d2dx()
454 sm2m(u64 sm) in sm2m()
456 u64 m; in sm2m()
464 dx2d(u64 dx) in dx2d()
466 u64 d; in dx2d()
489 rtsc_init(struct runtime_sc *rtsc, struct internal_sc *isc, u64 x, u64 y) in rtsc_init()
505 static u64
506 rtsc_y2x(struct runtime_sc *rtsc, u64 y) in rtsc_y2x()
508 u64 x; in rtsc_y2x()
526 static u64
527 rtsc_x2y(struct runtime_sc *rtsc, u64 x) in rtsc_x2y()
529 u64 y; in rtsc_x2y()
548 rtsc_min(struct runtime_sc *rtsc, struct internal_sc *isc, u64 x, u64 y) in rtsc_min()
550 u64 y1, y2, dx, dy; in rtsc_min()
612 u64 cur_time = psched_get_time(); in init_ed()
669 u64 vt, f, cur_time; in init_vf()
744 update_vf(struct hfsc_class *cl, unsigned int len, u64 cur_time) in update_vf()
746 u64 f; /* , myf_bound, delta; */ in update_vf()
877 u64 cur_time) in hfsc_change_rsc()
899 u64 cur_time) in hfsc_change_usc()
931 u64 cur_time; in hfsc_change_class()
1377 u64 next_time = 0; in hfsc_schedule_watchdog()
1589 u64 cur_time; in hfsc_dequeue()