Searched refs:rotl (Results 1 – 2 of 2) sorted by relevance
/linux-2.4.37.9/crypto/ |
D | aes.c | 81 #define rotl generic_rotl32 macro 194 fl_tab[1][i] = rotl (t, 8); in gen_tabs() 195 fl_tab[2][i] = rotl (t, 16); in gen_tabs() 196 fl_tab[3][i] = rotl (t, 24); in gen_tabs() 203 ft_tab[1][i] = rotl (t, 8); in gen_tabs() 204 ft_tab[2][i] = rotl (t, 16); in gen_tabs() 205 ft_tab[3][i] = rotl (t, 24); in gen_tabs() 211 il_tab[1][i] = rotl (t, 8); in gen_tabs() 212 il_tab[2][i] = rotl (t, 16); in gen_tabs() 213 il_tab[3][i] = rotl (t, 24); in gen_tabs() [all …]
|
D | michael_mic.c | 27 static inline u32 rotl(u32 val, int bits) in rotl() function 47 r ^= rotl(l, 17); \ 51 r ^= rotl(l, 3); \
|