Lines Matching refs:istat
101 struct crypto_istat_cipher *istat = skcipher_get_stat(alg);
107 atomic64_inc(&istat->err_cnt);
644 struct crypto_istat_cipher *istat = skcipher_get_stat(alg);
646 atomic64_inc(&istat->encrypt_cnt);
647 atomic64_add(req->cryptlen, &istat->encrypt_tlen);
666 struct crypto_istat_cipher *istat = skcipher_get_stat(alg);
668 atomic64_inc(&istat->decrypt_cnt);
669 atomic64_add(req->cryptlen, &istat->decrypt_tlen);
754 struct crypto_istat_cipher *istat;
757 istat = skcipher_get_stat(skcipher);
763 rcipher.stat_encrypt_cnt = atomic64_read(&istat->encrypt_cnt);
764 rcipher.stat_encrypt_tlen = atomic64_read(&istat->encrypt_tlen);
765 rcipher.stat_decrypt_cnt = atomic64_read(&istat->decrypt_cnt);
766 rcipher.stat_decrypt_tlen = atomic64_read(&istat->decrypt_tlen);
767 rcipher.stat_err_cnt = atomic64_read(&istat->err_cnt);
839 struct crypto_istat_cipher *istat = skcipher_get_stat(alg);
856 memset(istat, 0, sizeof(*istat));