Lines Matching refs:t_alg
1419 struct cc_crypto_alg *t_alg; in cc_create_alg() local
1422 t_alg = devm_kzalloc(dev, sizeof(*t_alg), GFP_KERNEL); in cc_create_alg()
1423 if (!t_alg) in cc_create_alg()
1426 alg = &t_alg->skcipher_alg; in cc_create_alg()
1443 t_alg->cipher_mode = tmpl->cipher_mode; in cc_create_alg()
1444 t_alg->flow_mode = tmpl->flow_mode; in cc_create_alg()
1446 return t_alg; in cc_create_alg()
1451 struct cc_crypto_alg *t_alg, *n; in cc_cipher_free() local
1454 list_for_each_entry_safe(t_alg, n, &drvdata->alg_list, entry) { in cc_cipher_free()
1455 crypto_unregister_skcipher(&t_alg->skcipher_alg); in cc_cipher_free()
1456 list_del(&t_alg->entry); in cc_cipher_free()
1463 struct cc_crypto_alg *t_alg; in cc_cipher_alloc() local
1480 t_alg = cc_create_alg(&skcipher_algs[alg], dev); in cc_cipher_alloc()
1481 if (IS_ERR(t_alg)) { in cc_cipher_alloc()
1482 rc = PTR_ERR(t_alg); in cc_cipher_alloc()
1487 t_alg->drvdata = drvdata; in cc_cipher_alloc()
1491 rc = crypto_register_skcipher(&t_alg->skcipher_alg); in cc_cipher_alloc()
1493 t_alg->skcipher_alg.base.cra_driver_name, rc); in cc_cipher_alloc()
1496 t_alg->skcipher_alg.base.cra_driver_name); in cc_cipher_alloc()
1500 list_add_tail(&t_alg->entry, &drvdata->alg_list); in cc_cipher_alloc()
1502 t_alg->skcipher_alg.base.cra_driver_name); in cc_cipher_alloc()