AVCAMELLIA        125 libavutil/camellia.c const int av_camellia_size = sizeof(AVCAMELLIA);
AVCAMELLIA        184 libavutil/camellia.c static void generate_round_keys(AVCAMELLIA *cs, uint64_t Kl[2], uint64_t Kr[2], uint64_t Ka[2], uint64_t Kb[2])
AVCAMELLIA        232 libavutil/camellia.c static void camellia_encrypt(AVCAMELLIA *cs, uint8_t *dst, const uint8_t *src)
AVCAMELLIA        277 libavutil/camellia.c static void camellia_decrypt(AVCAMELLIA *cs, uint8_t *dst, const uint8_t *src, uint8_t *iv)
AVCAMELLIA        347 libavutil/camellia.c struct AVCAMELLIA *av_camellia_alloc(void)
AVCAMELLIA        349 libavutil/camellia.c     return av_mallocz(sizeof(struct AVCAMELLIA));
AVCAMELLIA        352 libavutil/camellia.c av_cold int av_camellia_init(AVCAMELLIA *cs, const uint8_t *key, int key_bits)
AVCAMELLIA        393 libavutil/camellia.c void av_camellia_crypt(AVCAMELLIA *cs, uint8_t *dst, const uint8_t *src, int count, uint8_t *iv, int decrypt)
AVCAMELLIA        435 libavutil/camellia.c     AVCAMELLIA *cs;
AVCAMELLIA         38 libavutil/camellia.h struct AVCAMELLIA;
AVCAMELLIA         44 libavutil/camellia.h struct AVCAMELLIA *av_camellia_alloc(void);
AVCAMELLIA         53 libavutil/camellia.h int av_camellia_init(struct AVCAMELLIA *ctx, const uint8_t *key, int key_bits);
AVCAMELLIA         65 libavutil/camellia.h void av_camellia_crypt(struct AVCAMELLIA *ctx, uint8_t *dst, const uint8_t *src, int count, uint8_t* iv, int decrypt);
AVCAMELLIA        120 tools/crypto_bench.c     static struct AVCAMELLIA *camellia;