Lines Matching defs:crd
1572 struct cryptodesc *crd;
1583 while ((crd = crp->crp_desc) != NULL) {
1584 crp->crp_desc = crd->crd_next;
1585 pool_cache_put(cryptodesc_cache, crd);
1596 struct cryptodesc *crd;
1622 crd = pool_cache_get(cryptodesc_cache, PR_NOWAIT);
1623 if (crd == NULL) {
1628 memset(crd, 0, sizeof(struct cryptodesc));
1629 crd->crd_next = crp->crp_desc;
1630 crp->crp_desc = crd;