Lines Matching refs:ss
212 unsigned int plen, ss; in __crypto_shash_export() local
215 ss = crypto_shash_statesize(tfm); in __crypto_shash_export()
217 ss -= plen; in __crypto_shash_export()
219 memcpy(out, buf, ss); in __crypto_shash_export()
240 unsigned int ss = crypto_shash_statesize(tfm); in crypto_shash_export() local
243 memcpy(out + ss - plen, buf + descsize - plen, plen); in crypto_shash_export()
254 unsigned int descsize, plen, ss; in __crypto_shash_import() local
260 ss = crypto_shash_statesize(tfm); in __crypto_shash_import()
263 ss -= plen; in __crypto_shash_import()
268 memcpy(buf, in, ss); in __crypto_shash_import()
291 unsigned int ss = crypto_shash_statesize(tfm); in crypto_shash_import() local
294 memcpy(buf + descsize - plen, in + ss - plen, plen); in crypto_shash_import()