Lines Matching refs:ds
34 unsigned ds; in hash_alloc_result() local
39 ds = crypto_ahash_digestsize(crypto_ahash_reqtfm(&ctx->req)); in hash_alloc_result()
41 ctx->result = sock_kmalloc(sk, ds, GFP_KERNEL); in hash_alloc_result()
45 memset(ctx->result, 0, ds); in hash_alloc_result()
52 unsigned ds; in hash_free_result() local
57 ds = crypto_ahash_digestsize(crypto_ahash_reqtfm(&ctx->req)); in hash_free_result()
59 sock_kzfree_s(sk, ctx->result, ds); in hash_free_result()
189 unsigned ds = crypto_ahash_digestsize(crypto_ahash_reqtfm(&ctx->req)); in hash_recvmsg() local
193 if (len > ds) in hash_recvmsg()
194 len = ds; in hash_recvmsg()
195 else if (len < ds) in hash_recvmsg()