Lines Matching defs:limit
70 * therefore, three operations needs to be considered for the limit
109 /* calculate change limit; i.e., the time needed between enable and
128 * determined only after limit is known (chicken-and-egg problem)
133 static u64 tsnep_gcl_start_after(struct tsnep_gcl *gcl, u64 limit)
138 if (start <= limit) {
139 n = div64_u64(limit - start, gcl->cycle_time);
146 static u64 tsnep_gcl_start_before(struct tsnep_gcl *gcl, u64 limit)
151 n = div64_u64(limit - start, gcl->cycle_time);
153 if (start == limit)
265 u64 limit;
267 /* estimate timeout limit after timeout enable, actually timeout limit
274 limit = timeout + curr->change_limit;
276 limit = timeout;
278 gcl->start_time = tsnep_gcl_start_after(gcl, limit);