Home
last modified time | relevance | path

Searched refs:crypto_it_tab (Results 1 – 4 of 4) sorted by relevance

/linux-4.1.27/arch/x86/crypto/
Daes-x86_64-asm_64.S12 .extern crypto_it_tab
174 decrypt_round(crypto_it_tab,-96)
175 decrypt_round(crypto_it_tab,-80)
176 .Ld192: decrypt_round(crypto_it_tab,-64)
177 decrypt_round(crypto_it_tab,-48)
178 .Ld128: decrypt_round(crypto_it_tab,-32)
179 decrypt_round(crypto_it_tab,-16)
180 decrypt_round(crypto_it_tab, 0)
181 decrypt_round(crypto_it_tab, 16)
182 decrypt_round(crypto_it_tab, 32)
[all …]
Daes-i586-asm_32.S295 .extern crypto_it_tab
333 2: inv_rnd1( -64(%ebp), crypto_it_tab) // 14 rounds for 256-bit key
334 inv_rnd2( -48(%ebp), crypto_it_tab)
335 3: inv_rnd1( -32(%ebp), crypto_it_tab) // 12 rounds for 192-bit key
336 inv_rnd2( -16(%ebp), crypto_it_tab)
337 4: inv_rnd1( (%ebp), crypto_it_tab) // 10 rounds for 128-bit key
338 inv_rnd2( +16(%ebp), crypto_it_tab)
339 inv_rnd1( +32(%ebp), crypto_it_tab)
340 inv_rnd2( +48(%ebp), crypto_it_tab)
341 inv_rnd1( +64(%ebp), crypto_it_tab)
[all …]
/linux-4.1.27/crypto/
Daes_generic.c593 __visible const u32 crypto_it_tab[4][256] = { variable
1123 EXPORT_SYMBOL_GPL(crypto_it_tab);
1373 bo[n] = crypto_it_tab[0][byte(bi[n], 0)] ^ \
1374 crypto_it_tab[1][byte(bi[(n + 3) & 3], 1)] ^ \
1375 crypto_it_tab[2][byte(bi[(n + 2) & 3], 2)] ^ \
1376 crypto_it_tab[3][byte(bi[(n + 1) & 3], 3)] ^ *(k + n); \
/linux-4.1.27/include/crypto/
Daes.h32 extern const u32 crypto_it_tab[4][256];