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()
283 int i, ret; in crypto_register_scomps() local
285 for (i = 0; i < count; i++) { in crypto_register_scomps()
286 ret = crypto_register_scomp(&algs[i]); in crypto_register_scomps()
294 for (--i; i >= 0; --i) in crypto_register_scomps()
295 crypto_unregister_scomp(&algs[i]); in crypto_register_scomps()
303 int i; in crypto_unregister_scomps() local
305 for (i = count - 1; i >= 0; --i) in crypto_unregister_scomps()
306 crypto_unregister_scomp(&algs[i]); in crypto_unregister_scomps()