Lines Matching refs:xf
33 struct rte_crypto_sym_xform *xf, *xfn; in fill_crypto_xform() local
37 xf = prm->crypto_xform; in fill_crypto_xform()
38 if (xf == NULL) in fill_crypto_xform()
41 xfn = xf->next; in fill_crypto_xform()
44 if (xf->type == RTE_CRYPTO_SYM_XFORM_AEAD) { in fill_crypto_xform()
47 xform->aead = &xf->aead; in fill_crypto_xform()
50 } else if (xf->type == RTE_CRYPTO_SYM_XFORM_AUTH && in fill_crypto_xform()
51 xf->auth.algo == RTE_CRYPTO_AUTH_AES_GMAC) { in fill_crypto_xform()
54 xform->auth = &xf->auth; in fill_crypto_xform()
66 if (xfn == NULL || xf->type != RTE_CRYPTO_SYM_XFORM_AUTH || in fill_crypto_xform()
70 xform->auth = &xf->auth; in fill_crypto_xform()
76 if (xfn == NULL || xf->type != RTE_CRYPTO_SYM_XFORM_CIPHER || in fill_crypto_xform()
80 xform->cipher = &xf->cipher; in fill_crypto_xform()