Lines Matching defs:limit
433 int hw_poll_job_ring(struct sec_job_ring_t *job_ring, int32_t limit)
462 * If limit < 0 -> notify all done jobs
463 * If limit > total number of done jobs -> notify all done jobs
464 * If limit = 0 -> error
465 * If limit > 0 && limit < total number of done jobs -> notify a number
466 * of done jobs equal with limit
474 jobs_no_to_notify = (limit < 0 || limit > number_of_jobs_available) ?
475 number_of_jobs_available : limit;