Home | History | Annotate | Download | only in fuzz

Lines Matching refs:out2

166  * @param out2 Pointer to store the second generated key.
169 void **out1, void **out2)
181 *out2 = (void *)slh_dsa_gen_key(keytype, keysize, NULL, 0);
202 * @param out2 Unused output parameter (placeholder for symmetry with
206 void **out1, void **out2)
280 * @param out2 Pointer to the second output key to be freed.
282 static void slh_dsa_clean_keys(void *in1, void *in2, void *out1, void *out2)
287 EVP_PKEY_free((EVP_PKEY *)out2);
304 * @param out2 Unused output parameter (placeholder for consistency).
307 void *key2, void **out1, void **out2)
415 * @param out2 Unused output parameter (placeholder for consistency).
418 void *key2, void **out1, void **out2)
497 * @param out2 Pointer to store the second output of the setup function.
499 out2);
509 * @param out2 Pointer to store the second output of the operation.
512 void **out1, void **out2);
520 * @param out2 Second output parameter to be cleaned up.
522 void (*cleanup)(void *in1, void *in2, void *out1, void *out2);
570 void *out1 = NULL, *out2 = NULL;
593 ops[operation].doit(&buffer_cursor, &len, in1, in2, &out1, &out2);
595 ops[operation].cleanup(in1, in2, out1, out2);