Lines Matching full:in2
278 * @param in2 Pointer to the second input key to be freed.
282 static void slh_dsa_clean_keys(void *in1, void *in2, void *out1, void *out2) in slh_dsa_clean_keys() argument
285 EVP_PKEY_free((EVP_PKEY *)in2); in slh_dsa_clean_keys()
507 * @param in2 Second input parameter for the operation.
511 void (*doit)(uint8_t **buf, size_t *len, void *in1, void *in2,
518 * @param in2 Second input parameter to be cleaned up.
522 void (*cleanup)(void *in1, void *in2, void *out1, void *out2);
574 void *in1 = NULL, *in2 = NULL; in FuzzerTestOneInput() local
596 ops[operation].setup(&buffer_cursor, &len, &in1, &in2); in FuzzerTestOneInput()
598 ops[operation].doit(&buffer_cursor, &len, in1, in2, &out1, &out2); in FuzzerTestOneInput()
600 ops[operation].cleanup(in1, in2, out1, out2); in FuzzerTestOneInput()