/Linux-v4.19/drivers/staging/rtl8723bs/include/ |
D | rtw_security.h | 300 static inline u32 rotr(u32 val, int bits) in rotr() function 306 #define TE1(i) rotr(Te0[((i) >> 16) & 0xff], 8) 307 #define TE2(i) rotr(Te0[((i) >> 8) & 0xff], 16) 308 #define TE3(i) rotr(Te0[(i) & 0xff], 24) 320 #define TD1(i) rotr(Td0[((i) >> 16) & 0xff], 8) 321 #define TD2(i) rotr(Td0[((i) >> 8) & 0xff], 16) 322 #define TD3(i) rotr(Td0[(i) & 0xff], 24) 328 #define TD1_(i) rotr(Td0[(i) & 0xff], 8) 329 #define TD2_(i) rotr(Td0[(i) & 0xff], 16) 330 #define TD3_(i) rotr(Td0[(i) & 0xff], 24)
|
/Linux-v4.19/drivers/staging/rtl8188eu/include/ |
D | rtw_security.h | 246 static inline u32 rotr(u32 val, int bits) in rotr() function 252 #define TE1(i) rotr(Te0[((i) >> 16) & 0xff], 8) 253 #define TE2(i) rotr(Te0[((i) >> 8) & 0xff], 16) 254 #define TE3(i) rotr(Te0[(i) & 0xff], 24)
|
/Linux-v4.19/arch/ia64/lib/ |
D | xor.S | 41 .rotr s1[6+1], s2[6+1], d[2] 80 .rotr s1[6+1], s2[6+1], s3[6+1], d[2] 122 .rotr s1[6+1], s2[6+1], s3[6+1], s4[6+1], d[2] 167 .rotr s1[6+1], s2[6+1], s3[6+1], s4[6+1], s5[6+1], d[2]
|
D | memcpy.S | 94 .rotr val[N] 236 .rotr val[N+1], w[2]
|
D | copy_page.S | 44 .rotr t1[PIPE_DEPTH], t2[PIPE_DEPTH], t3[PIPE_DEPTH], t4[PIPE_DEPTH], \
|
D | strlen.S | 88 .rotr v[2], w[2] // declares our 4 aliases
|
D | copy_page_mck.S | 106 .rotr v[2*PREFETCH_DIST], n[D-C+1]
|
D | do_csum.S | 131 .rotr word1[4], word2[4],result1[LOAD_LATENCY+2],result2[LOAD_LATENCY+2]
|
D | copy_user.S | 80 .rotr val1[PIPE_DEPTH],val2[PIPE_DEPTH]
|
D | memcpy_mck.S | 191 .rotr v[2*PREFETCH_DIST]
|
/Linux-v4.19/drivers/staging/rtl8188eu/core/ |
D | rtw_security.c | 876 u8 rotr[4]; in mix_column() local 912 xor_32(in, add1bf7, rotr); in mix_column() 914 temp[0] = rotr[0]; /* Rotate right 8 bits */ in mix_column() 915 rotr[0] = rotr[1]; in mix_column() 916 rotr[1] = rotr[2]; in mix_column() 917 rotr[2] = rotr[3]; in mix_column() 918 rotr[3] = temp[0]; in mix_column() 920 xor_32(add1bf7, rotr, temp); in mix_column()
|
/Linux-v4.19/drivers/staging/rtl8712/ |
D | rtl871x_security.c | 838 u8 rotr[4]; in mix_column() local 868 xor_32(in, add1bf7, rotr); in mix_column() 869 temp[0] = rotr[0]; /* Rotate right 8 bits */ in mix_column() 870 rotr[0] = rotr[1]; in mix_column() 871 rotr[1] = rotr[2]; in mix_column() 872 rotr[2] = rotr[3]; in mix_column() 873 rotr[3] = temp[0]; in mix_column() 874 xor_32(add1bf7, rotr, temp); in mix_column()
|
/Linux-v4.19/arch/mips/net/ |
D | bpf_jit_asm.S | 71 rotr $r_A, t0, 16 177 rotr $r_A, t0, 16
|
D | ebpf_jit.c | 1271 emit_instr(ctx, rotr, dst, dst, 16); in build_one_insn()
|
/Linux-v4.19/drivers/staging/rtl8723bs/core/ |
D | rtw_security.c | 1052 u8 rotr[4]; in mix_column() local 1088 xor_32(in, add1bf7, rotr); in mix_column() 1090 temp[0] = rotr[0]; /* Rotate right 8 bits */ in mix_column() 1091 rotr[0] = rotr[1]; in mix_column() 1092 rotr[1] = rotr[2]; in mix_column() 1093 rotr[2] = rotr[3]; in mix_column() 1094 rotr[3] = temp[0]; in mix_column() 1096 xor_32(add1bf7, rotr, temp); in mix_column()
|