Lines Matching defs:shash
130 struct shash_desc *shash;
152 shash = *this_cpu_ptr(algo->shashs);
153 shash->tfm = tfm;
155 ret = crypto_shash_digest(shash, text, psize, output);
366 struct shash_desc *shash;
394 shsize = sizeof(*shash) + crypto_shash_descsize(tfm);
401 shash = kzalloc_node(shsize, GFP_KERNEL,
403 if (!shash)
405 *per_cpu_ptr(algo->shashs, cpu) = shash;
432 struct shash_desc *shash;
441 shash = *per_cpu_ptr(algo->shashs, cpu);
442 kfree(shash);