Lines Matching defs:shash
124 struct shash_desc *shash;
146 shash = *this_cpu_ptr(algo->shashs);
147 shash->tfm = tfm;
149 ret = crypto_shash_digest(shash, text, psize, output);
356 struct shash_desc *shash;
381 shsize = sizeof(*shash) + crypto_shash_descsize(tfm);
388 shash = kzalloc_node(shsize, GFP_KERNEL,
390 if (!shash)
392 *per_cpu_ptr(algo->shashs, cpu) = shash;
423 struct shash_desc *shash;
425 shash = *per_cpu_ptr(algo->shashs, cpu);
426 kfree(shash);