Searched refs:algs (Results 1 – 7 of 7) sorted by relevance
/drivers/staging/rtl8192e/ |
D | rtllib_crypt.c | 29 struct list_head algs; member 116 list_add(&alg->list, &hcrypt->algs); in rtllib_register_crypto_ops() 136 for (ptr = hcrypt->algs.next; ptr != &hcrypt->algs; ptr = ptr->next) { in rtllib_unregister_crypto_ops() 168 for (ptr = hcrypt->algs.next; ptr != &hcrypt->algs; ptr = ptr->next) { in rtllib_get_crypto_ops() 215 INIT_LIST_HEAD(&hcrypt->algs); in rtllib_crypto_init() 235 for (ptr = hcrypt->algs.next, n = ptr->next; ptr != &hcrypt->algs; in rtllib_crypto_deinit()
|
/drivers/staging/rtl8192u/ieee80211/ |
D | ieee80211_crypt.c | 34 struct list_head algs; member 118 list_add(&alg->list, &hcrypt->algs); in ieee80211_register_crypto_ops() 137 for (ptr = hcrypt->algs.next; ptr != &hcrypt->algs; ptr = ptr->next) { in ieee80211_unregister_crypto_ops() 168 for (ptr = hcrypt->algs.next; ptr != &hcrypt->algs; ptr = ptr->next) { in ieee80211_get_crypto_ops() 211 INIT_LIST_HEAD(&hcrypt->algs); in ieee80211_crypto_init() 230 for (ptr = hcrypt->algs.next, n = ptr->next; ptr != &hcrypt->algs; in ieee80211_crypto_deinit()
|
/drivers/staging/rtl8187se/ieee80211/ |
D | ieee80211_crypt.c | 36 struct list_head algs; member 119 list_add(&alg->list, &hcrypt->algs); in ieee80211_register_crypto_ops() 137 for (ptr = hcrypt->algs.next; ptr != &hcrypt->algs; ptr = ptr->next) { in ieee80211_unregister_crypto_ops() 167 for (ptr = hcrypt->algs.next; ptr != &hcrypt->algs; ptr = ptr->next) { in ieee80211_get_crypto_ops() 211 INIT_LIST_HEAD(&hcrypt->algs); in ieee80211_crypto_init() 232 list_for_each_safe(ptr, n, &hcrypt->algs) { in ieee80211_crypto_deinit()
|
/drivers/crypto/ |
D | tegra-aes.c | 816 static struct crypto_alg algs[] = { variable 1009 for (i = 0; i < ARRAY_SIZE(algs); i++) { in tegra_aes_probe() 1010 algs[i].cra_priority = 300; in tegra_aes_probe() 1011 algs[i].cra_ctxsize = sizeof(struct tegra_aes_ctx); in tegra_aes_probe() 1012 algs[i].cra_module = THIS_MODULE; in tegra_aes_probe() 1013 algs[i].cra_init = tegra_aes_cra_init; in tegra_aes_probe() 1014 algs[i].cra_exit = tegra_aes_cra_exit; in tegra_aes_probe() 1016 err = crypto_register_alg(&algs[i]); in tegra_aes_probe() 1026 crypto_unregister_alg(&algs[j]); in tegra_aes_probe() 1056 for (i = 0; i < ARRAY_SIZE(algs); i++) in tegra_aes_remove() [all …]
|
D | s5p-sss.c | 515 static struct crypto_alg algs[] = { variable 628 for (i = 0; i < ARRAY_SIZE(algs); i++) { in s5p_aes_probe() 629 err = crypto_register_alg(&algs[i]); in s5p_aes_probe() 639 dev_err(dev, "can't register '%s': %d\n", algs[i].cra_name, err); in s5p_aes_probe() 642 crypto_unregister_alg(&algs[j]); in s5p_aes_probe() 663 for (i = 0; i < ARRAY_SIZE(algs); i++) in s5p_aes_remove() 664 crypto_unregister_alg(&algs[i]); in s5p_aes_remove()
|
D | picoxcell_crypto.c | 120 struct spacc_alg *algs; member 1723 engine->algs = ipsec_engine_algs; in spacc_probe() 1730 engine->algs = l2_engine_algs; in spacc_probe() 1824 engine->algs[i].engine = engine; in spacc_probe() 1825 err = crypto_register_alg(&engine->algs[i].alg); in spacc_probe() 1827 list_add_tail(&engine->algs[i].entry, in spacc_probe() 1833 engine->algs[i].alg.cra_name); in spacc_probe() 1836 engine->algs[i].alg.cra_name); in spacc_probe()
|
D | bfin_crc.c | 506 static struct ahash_alg algs = { variable 679 ret = crypto_register_ahash(&algs); in bfin_crypto_crc_probe() 721 crypto_unregister_ahash(&algs); in bfin_crypto_crc_remove()
|