Lines Matching refs:crpt
1861 struct cryptop *crpt; in crypto_ret_thread() local
1866 crpt = TAILQ_FIRST(&ret_worker->crp_ordered_ret_q); in crypto_ret_thread()
1867 if (crpt != NULL) { in crypto_ret_thread()
1868 if (crpt->crp_seq == ret_worker->reorder_cur_seq) { in crypto_ret_thread()
1869 TAILQ_REMOVE(&ret_worker->crp_ordered_ret_q, crpt, crp_next); in crypto_ret_thread()
1872 crpt = NULL; in crypto_ret_thread()
1876 if (crpt == NULL) { in crypto_ret_thread()
1877 crpt = TAILQ_FIRST(&ret_worker->crp_ret_q); in crypto_ret_thread()
1878 if (crpt != NULL) in crypto_ret_thread()
1879 TAILQ_REMOVE(&ret_worker->crp_ret_q, crpt, crp_next); in crypto_ret_thread()
1882 if (crpt != NULL) { in crypto_ret_thread()
1887 if (crpt != NULL) in crypto_ret_thread()
1888 crpt->crp_callback(crpt); in crypto_ret_thread()