Searched refs:larval (Results 1 - 5 of 5) sorted by relevance

/linux-master/crypto/
H A Dapi.c98 struct crypto_larval *larval = (void *)alg; local
101 if (!IS_ERR_OR_NULL(larval->adult))
102 crypto_mod_put(larval->adult);
103 kfree(larval);
108 struct crypto_larval *larval; local
110 larval = kzalloc(sizeof(*larval), GFP_KERNEL);
111 if (!larval)
114 larval->mask = mask;
115 larval
130 struct crypto_larval *larval; local
157 struct crypto_larval *larval = (void *)alg; local
167 crypto_wait_for_test(struct crypto_larval *larval) argument
182 crypto_start_test(struct crypto_larval *larval) argument
204 struct crypto_larval *larval = (void *)alg; local
318 struct crypto_alg *larval; local
[all...]
H A Dalgboss.c38 struct crypto_larval *larval; member in struct:cryptomgr_param
67 complete_all(&param->larval->completion);
68 crypto_alg_put(&param->larval->alg);
73 static int cryptomgr_schedule_probe(struct crypto_larval *larval) argument
77 const char *name = larval->alg.cra_name;
148 param->type.data.type = larval->alg.cra_flags & ~CRYPTO_ALG_TESTED;
149 param->type.data.mask = larval->mask & ~CRYPTO_ALG_TESTED;
152 param->otype = larval->alg.cra_flags;
153 param->omask = larval->mask;
155 crypto_alg_get(&larval
[all...]
H A Dalgapi.c251 struct crypto_larval *larval = (void *)q; local
256 * by the larval entry q.
262 if (larval->adult)
264 if ((q->cra_flags ^ alg->cra_flags) & larval->mask)
268 larval->adult = alg;
270 larval->adult = ERR_PTR(-EAGAIN);
290 struct crypto_larval *larval; local
297 larval = crypto_larval_alloc(alg->cra_name,
299 if (IS_ERR(larval))
300 return larval;
320 struct crypto_larval *larval; local
455 struct crypto_larval *larval; local
653 struct crypto_larval *larval; local
1063 struct crypto_larval *larval = NULL; local
[all...]
H A Dinternal.h114 void crypto_wait_for_test(struct crypto_larval *larval);
209 static inline int crypto_is_test_larval(struct crypto_larval *larval) argument
211 return larval->alg.cra_driver_name[0];
/linux-master/drivers/crypto/ccree/
H A Dcc_hash.c45 * larval hashes must be stored in hi/lo order
172 const void *larval = cc_larval_digest(dev, ctx->hash_mode); local
174 memcpy(state->digest_buff, larval, ctx->inter_digestsize);

Completed in 204 milliseconds