Home
last modified time | relevance | path

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

/linux-4.1.27/arch/x86/crypto/
Dserpent_avx2_glue.c82 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(serpent_xts_enc_16way) }
85 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(serpent_xts_enc_8way_avx) }
88 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(serpent_xts_enc) }
130 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(serpent_xts_dec_16way) }
133 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(serpent_xts_dec_8way_avx) }
136 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(serpent_xts_dec) }
Dcamellia_aesni_avx2_glue.c90 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(camellia_xts_enc_32way) }
93 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(camellia_xts_enc_16way) }
96 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(camellia_xts_enc) }
144 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(camellia_xts_dec_32way) }
147 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(camellia_xts_dec_16way) }
150 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(camellia_xts_dec) }
Dtwofish_avx_glue.c123 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(twofish_xts_enc_8way) }
126 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(twofish_xts_enc) }
168 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(twofish_xts_dec_8way) }
171 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(twofish_xts_dec) }
Dcast6_avx_glue.c115 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(cast6_xts_enc_8way) }
118 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(cast6_xts_enc) }
154 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(cast6_xts_dec_8way) }
157 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(cast6_xts_dec) }
Dserpent_avx_glue.c128 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(serpent_xts_enc_8way_avx) }
131 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(serpent_xts_enc) }
167 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(serpent_xts_dec_8way_avx) }
170 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(serpent_xts_dec) }
Dcamellia_aesni_avx_glue.c106 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(camellia_xts_enc_16way) }
109 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(camellia_xts_enc) }
151 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(camellia_xts_dec_16way) }
154 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(camellia_xts_dec) }
Daesni-intel_glue.c696 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(aesni_xts_enc8) }
699 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(aesni_xts_enc) }
709 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(aesni_xts_dec8) }
712 .fn_u = { .xts = GLUE_XTS_FUNC_CAST(aesni_xts_dec) }
/linux-4.1.27/arch/x86/include/asm/crypto/
Dglue_helper.h23 #define GLUE_XTS_FUNC_CAST(fn) ((common_glue_xts_func_t)(fn)) macro