Lines Matching refs:cipher_t
57 cipher_driver_test_throughput(cipher_t *c);
70 cipher_driver_test_buffering(cipher_t *c);
81 cipher_array_test_throughput(cipher_t *ca[], int num_cipher);
84 cipher_array_bits_per_second(cipher_t *cipher_array[], int num_cipher,
88 cipher_array_delete(cipher_t *cipher_array[], int num_cipher);
91 cipher_array_alloc_init(cipher_t ***cipher_array, int num_ciphers,
121 cipher_t *c = NULL; in main()
224 cipher_driver_test_throughput(cipher_t *c) { in cipher_driver_test_throughput()
260 cipher_driver_test_buffering(cipher_t *c) { in cipher_driver_test_buffering()
345 cipher_array_alloc_init(cipher_t ***ca, int num_ciphers, in cipher_array_alloc_init()
350 cipher_t **cipher_array; in cipher_array_alloc_init()
353 cipher_array = (cipher_t **) malloc(sizeof(cipher_t *) * num_ciphers); in cipher_array_alloc_init()
394 cipher_array_delete(cipher_t *cipher_array[], int num_cipher) { in cipher_array_delete()
420 cipher_array_bits_per_second(cipher_t *cipher_array[], int num_cipher, in cipher_array_bits_per_second()
458 cipher_array_test_throughput(cipher_t *ca[], int num_cipher) { in cipher_array_test_throughput()
476 cipher_t **ca = NULL; in cipher_driver_test_array_throughput()