Home
last modified time | relevance | path

Searched refs:GLUE_XTS_FUNC_CAST (Results 1 – 8 of 8) sorted by relevance

/Linux-v5.4/arch/x86/crypto/
Dserpent_avx2_glue.c79 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(serpent_xts_enc_16way) }
82 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(serpent_xts_enc_8way_avx) }
85 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(serpent_xts_enc) }
127 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(serpent_xts_dec_16way) }
130 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(serpent_xts_dec_8way_avx) }
133 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(serpent_xts_dec) }
Dcamellia_aesni_avx2_glue.c81 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(camellia_xts_enc_32way) }
84 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(camellia_xts_enc_16way) }
87 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(camellia_xts_enc) }
135 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(camellia_xts_dec_32way) }
138 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(camellia_xts_dec_16way) }
141 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(camellia_xts_dec) }
Dcast6_avx_glue.c99 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(cast6_xts_enc_8way) }
102 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(cast6_xts_enc) }
138 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(cast6_xts_dec_8way) }
141 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(cast6_xts_dec) }
Dserpent_avx_glue.c131 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(serpent_xts_enc_8way_avx) }
134 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(serpent_xts_enc) }
170 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(serpent_xts_dec_8way_avx) }
173 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(serpent_xts_dec) }
Dtwofish_avx_glue.c128 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(twofish_xts_enc_8way) }
131 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(twofish_xts_enc) }
173 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(twofish_xts_dec_8way) }
176 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(twofish_xts_dec) }
Dcamellia_aesni_avx_glue.c97 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(camellia_xts_enc_16way) }
100 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(camellia_xts_enc) }
142 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(camellia_xts_dec_16way) }
145 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(camellia_xts_dec) }
Daesni-intel_glue.c584 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(aesni_xts_enc8) }
587 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(aesni_xts_enc) }
597 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(aesni_xts_dec8) }
600 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(aesni_xts_dec) }
/Linux-v5.4/arch/x86/include/asm/crypto/
Dglue_helper.h24 #define GLUE_XTS_FUNC_CAST(fn) ((common_glue_xts_func_t)(fn)) macro