Searched refs:rotr (Results 1 – 13 of 13) sorted by relevance
/linux-2.6.39/drivers/staging/rtl8192u/ieee80211/ |
D | aes.c | 83 #define rotr generic_rotr32 macro 236 (y) ^= rotr(u ^ t, 8) ^ \ 237 rotr(v ^ t, 16) ^ \ 238 rotr(t,24) 243 { t = rotr(t, 8); t = ls_box(t) ^ rco_tab[i]; \ 251 { t = rotr(t, 8); t = ls_box(t) ^ rco_tab[i]; \ 261 { t = rotr(t, 8); ; t = ls_box(t) ^ rco_tab[i]; \
|
D | michael_mic.c | 34 static inline u32 rotr(u32 val, int bits) in rotr() function 54 r ^= rotr(l, 2); \
|
/linux-2.6.39/arch/ia64/lib/ |
D | xor.S | 40 .rotr s1[6+1], s2[6+1], d[2] 78 .rotr s1[6+1], s2[6+1], s3[6+1], d[2] 119 .rotr s1[6+1], s2[6+1], s3[6+1], s4[6+1], d[2] 163 .rotr s1[6+1], s2[6+1], s3[6+1], s4[6+1], s5[6+1], d[2]
|
D | memcpy.S | 92 .rotr val[N] 234 .rotr val[N+1], w[2]
|
D | copy_page.S | 42 .rotr t1[PIPE_DEPTH], t2[PIPE_DEPTH], t3[PIPE_DEPTH], t4[PIPE_DEPTH], \
|
D | strlen.S | 86 .rotr v[2], w[2] // declares our 4 aliases
|
D | strlen_user.S | 88 .rotr v[2], w[2] // declares our 4 aliases
|
D | copy_page_mck.S | 104 .rotr v[2*PREFETCH_DIST], n[D-C+1]
|
D | do_csum.S | 130 .rotr word1[4], word2[4],result1[LOAD_LATENCY+2],result2[LOAD_LATENCY+2]
|
D | copy_user.S | 78 .rotr val1[PIPE_DEPTH],val2[PIPE_DEPTH]
|
D | memcpy_mck.S | 188 .rotr v[2*PREFETCH_DIST]
|
/linux-2.6.39/drivers/staging/rtl8712/ |
D | rtl871x_security.c | 819 u8 rotr[4]; in mix_column() local 849 xor_32(in, add1bf7, rotr); in mix_column() 850 temp[0] = rotr[0]; /* Rotate right 8 bits */ in mix_column() 851 rotr[0] = rotr[1]; in mix_column() 852 rotr[1] = rotr[2]; in mix_column() 853 rotr[2] = rotr[3]; in mix_column() 854 rotr[3] = temp[0]; in mix_column() 855 xor_32(add1bf7, rotr, temp); in mix_column()
|
/linux-2.6.39/drivers/staging/rt2860/common/ |
D | cmm_aes.c | 182 u8 rotr[4]; in mix_column() local 219 xor_32(in, add1bf7, rotr); in mix_column() 221 temp[0] = rotr[0]; /* Rotate right 8 bits */ in mix_column() 222 rotr[0] = rotr[1]; in mix_column() 223 rotr[1] = rotr[2]; in mix_column() 224 rotr[2] = rotr[3]; in mix_column() 225 rotr[3] = temp[0]; in mix_column() 227 xor_32(add1bf7, rotr, temp); in mix_column()
|