Lines Matching refs:i
71 int i; in crypto_scomp_free_scratches() local
73 for_each_possible_cpu(i) { in crypto_scomp_free_scratches()
74 scratch = per_cpu_ptr(&scomp_scratch, i); in crypto_scomp_free_scratches()
86 int i; in crypto_scomp_alloc_scratches() local
88 for_each_possible_cpu(i) { in crypto_scomp_alloc_scratches()
91 scratch = per_cpu_ptr(&scomp_scratch, i); in crypto_scomp_alloc_scratches()
93 mem = vmalloc_node(SCOMP_SCRATCH_SIZE, cpu_to_node(i)); in crypto_scomp_alloc_scratches()
97 mem = vmalloc_node(SCOMP_SCRATCH_SIZE, cpu_to_node(i)); in crypto_scomp_alloc_scratches()
277 int i, ret; in crypto_register_scomps() local
279 for (i = 0; i < count; i++) { in crypto_register_scomps()
280 ret = crypto_register_scomp(&algs[i]); in crypto_register_scomps()
288 for (--i; i >= 0; --i) in crypto_register_scomps()
289 crypto_unregister_scomp(&algs[i]); in crypto_register_scomps()
297 int i; in crypto_unregister_scomps() local
299 for (i = count - 1; i >= 0; --i) in crypto_unregister_scomps()
300 crypto_unregister_scomp(&algs[i]); in crypto_unregister_scomps()