Home
last modified time | relevance | path

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

/Linux-v4.19/arch/x86/crypto/
Dserpent_avx2_glue.c84 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(serpent_xts_enc_16way) }
87 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(serpent_xts_enc_8way_avx) }
90 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(serpent_xts_enc) }
132 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(serpent_xts_dec_16way) }
135 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(serpent_xts_dec_8way_avx) }
138 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(serpent_xts_dec) }
Dcamellia_aesni_avx2_glue.c86 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(camellia_xts_enc_32way) }
89 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(camellia_xts_enc_16way) }
92 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(camellia_xts_enc) }
140 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(camellia_xts_dec_32way) }
143 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(camellia_xts_dec_16way) }
146 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(camellia_xts_dec) }
Dserpent_avx_glue.c146 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(serpent_xts_enc_8way_avx) }
149 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(serpent_xts_enc) }
185 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(serpent_xts_dec_8way_avx) }
188 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(serpent_xts_dec) }
Dcast6_avx_glue.c114 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(cast6_xts_enc_8way) }
117 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(cast6_xts_enc) }
153 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(cast6_xts_dec_8way) }
156 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(cast6_xts_dec) }
Dtwofish_avx_glue.c143 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(twofish_xts_enc_8way) }
146 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(twofish_xts_enc) }
188 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(twofish_xts_dec_8way) }
191 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(twofish_xts_dec) }
Dcamellia_aesni_avx_glue.c102 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(camellia_xts_enc_16way) }
105 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(camellia_xts_enc) }
147 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(camellia_xts_dec_16way) }
150 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(camellia_xts_dec) }
Daesni-intel_glue.c631 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(aesni_xts_enc8) }
634 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(aesni_xts_enc) }
644 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(aesni_xts_dec8) }
647 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(aesni_xts_dec) }
/Linux-v4.19/arch/x86/include/asm/crypto/
Dglue_helper.h24 #define GLUE_XTS_FUNC_CAST(fn) ((common_glue_xts_func_t)(fn)) macro