Searched refs:fullsize (Results 1 – 3 of 3) sorted by relevance
89 size_t fullsize = 0; in caam_cipher_update_xts() local144 fullsize = dupdate->src.length; in caam_cipher_update_xts()145 lastblk = fullsize % ctx->alg->size_block; in caam_cipher_update_xts()146 fullsize -= lastblk; in caam_cipher_update_xts()149 if (!fullsize) { in caam_cipher_update_xts()155 fullsize -= ctx->alg->size_block; in caam_cipher_update_xts()165 for (; fullsize > 0; fullsize -= ctx->alg->size_block) { in caam_cipher_update_xts()166 CIPHER_TRACE("Tweak block fullsize %zu", fullsize); in caam_cipher_update_xts()
574 size_t fullsize = 0; in do_update_streaming() local585 fullsize = ctx->blockbuf.filled + dupdate->src.length; in do_update_streaming()586 CIPHER_TRACE("Fullsize %zu", fullsize); in do_update_streaming()587 if (fullsize < ctx->alg->size_block) { in do_update_streaming()591 size_topost = fullsize % ctx->alg->size_block; in do_update_streaming()593 size_todo = fullsize - size_topost; in do_update_streaming()597 CIPHER_TRACE("FullSize %zu - posted %zu - todo %zu", fullsize, in do_update_streaming()
473 size_t fullsize = 0; in caam_hash_hmac_update() local495 fullsize = ctx->blockbuf.filled + len; in caam_hash_hmac_update()496 size_topost = fullsize % alg->size_block; in caam_hash_hmac_update()497 size_todo = fullsize - size_topost; in caam_hash_hmac_update()499 HASH_TRACE("FullSize %zu - posted %zu - todo %zu", fullsize, in caam_hash_hmac_update()
Completed in 5 milliseconds