Lines Matching full:out1
165 * @param out1 Pointer to store the first generated key.
169 void **out1, void **out2) in slh_dsa_gen_keys() argument
177 *out1 = (void *)slh_dsa_gen_key(keytype, keysize, NULL, 0); in slh_dsa_gen_keys()
200 * @param out1 Pointer to store the generated key. Will be NULL if key
206 void **out1, void **out2) in slh_dsa_gen_key_with_params() argument
219 *out1 = NULL; in slh_dsa_gen_key_with_params()
262 *out1 = (void *)slh_dsa_gen_key(keytype, keysize, params, &broken); in slh_dsa_gen_key_with_params()
265 OPENSSL_assert(*out1 == NULL); in slh_dsa_gen_key_with_params()
267 OPENSSL_assert(*out1 != NULL); in slh_dsa_gen_key_with_params()
279 * @param out1 Pointer to the first output 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
286 EVP_PKEY_free((EVP_PKEY *)out1); in slh_dsa_clean_keys()
303 * @param out1 Pointer to store the generated key (for cleanup purposes).
307 void *key2, void **out1, void **out2) in slh_dsa_sign_verify() argument
369 *out1 = key; /* for cleanup */ in slh_dsa_sign_verify()
414 * @param out1 Unused output parameter (placeholder for consistency).
418 void *key2, void **out1, void **out2) in slh_dsa_export_import() argument
496 * @param out1 Pointer to store the first output of the setup function.
499 void (*setup)(uint8_t **buf, size_t *len, void **out1, void **out2);
508 * @param out1 Pointer to store the first output of the operation.
512 void **out1, void **out2);
519 * @param out1 First output parameter to be cleaned up.
522 void (*cleanup)(void *in1, void *in2, void *out1, void *out2);
575 void *out1 = NULL, *out2 = NULL; in FuzzerTestOneInput() local
598 ops[operation].doit(&buffer_cursor, &len, in1, in2, &out1, &out2); in FuzzerTestOneInput()
600 ops[operation].cleanup(in1, in2, out1, out2); in FuzzerTestOneInput()