Searched refs:R3 (Results 1 - 158 of 158) sorted by relevance

/linux-4.4.14/arch/blackfin/lib/
H A Dmuldi3.S18 R1:R0 * R3:R2
19 = R1.h:R1.l:R0.h:R0.l * R3.h:R3.l:R2.h:R2.l
20 [X] = (R1.h * R3.h) * 2^96
21 [X] + (R1.h * R3.l + R1.l * R3.h) * 2^80
22 [X] + (R1.h * R2.h + R1.l * R3.l + R3.h * R0.h) * 2^64
23 [T1] + (R1.h * R2.l + R3.h * R0.l + R1.l * R2.h + R3.l * R0.h) * 2^48
24 [T2] + (R1.l * R2.l + R3.l * R0.l + R0.h * R2.h) * 2^32
32 [E1] = R1.h * R2.l + R3.h * R0.l + R1.l * R2.h + R3.l * R0.h
33 [E2] = R1.l * R2.l + R3.l * R0.l + R0.h * R2.h
42 multiplications involving R1.h and R3.h, but only the top 16 bit of
43 the 32 bit result depend on the sign, and since R1.h and R3.h only
51 A0 = R2.H * R1.L, A1 = R2.L * R1.H (FU) || R3 = [SP + 12]; /* E1 */
52 A0 += R3.H * R0.L, A1 += R3.L * R0.H (FU) || [SP] = R4; /* E1 */
55 A0 = R0.l * R3.l (FU); /* E2 */
59 R3 = A1.w; define
69 R0 = PACK (R0.l, R3.l);
H A Dsmulsi3_highpart.S19 R3 = R1.H * R0.L (IS,M); define
26 R1.L = R1.L + R3.L;
29 R3 >>>= 16;
30 R1 = R1 + R3;
H A Dmemcpy.S42 R3 = R1 + R2; define
43 CC = R0 < R3; /* and dst < src+len */
49 R3 = R1 | R0; define
51 R3 = R3 & R1; define
52 CC = R3; /* low bits set on either address? */
64 R3 = B[P1++] (X); define
66 B[P0++] = R3;
75 R3 = [I1++]; define
78 [P0++] = R3;
80 R3 = [I1++]; define
84 MNOP || [P0++] = R3 || R3 = [I1++];
86 [P0++] = R3;
88 R3 = 0x3; define
89 R3 = R2 & R3; define
90 CC = R3 == 0;
94 .Lbytes_left: P2 = R3;
H A Dudivsi3.S28 R3 = R1 >> 15; /* and Y is a 15-bit number */ define
29 R2 = R2 | R3; /* then it's okay to use the DIVQ builtins (fallthrough to fast)*/
71 ** R3 currently holds Y>>15, which means R3's LSB is the
83 R3 += -1; /* if so, Y is 0x00008nnn */
89 R3 = R1 >> 1; /* Pre-scaled divisor for primitive case */ define
92 R2 = R3 - R2; /* shifted divisor < upper 16 bits of dividend */
122 R3 = 1; define
131 IF !CC R6 = R3; /* R1 doesn't, so at most 1 shifted */
134 R3 = -R1; define
135 [--SP] = R3;
145 R3 = 0; /* Clear partial remainder */ define
152 R3 = R3 << 1 || R5 = [SP]; define
153 R3 = R3 | R6; /* Include any carry */ define
157 R3 = R3 + R5; /* Add/sub divsor to partial remainder */ define
158 R7 = R3 ^ R1; /* Generate next quotient bit */
171 R3 = R2; /* Copy of R2 */ define
172 R3 *= R1; /* Q * divisor */
173 R5 = R0 - R3; /* Z = (dividend - Q * divisor) */
234 // R3 is already R1 >> 1
237 DIVQ(R2, R3); // 1
238 DIVQ(R2, R3); // 2
239 DIVQ(R2, R3); // 3
240 DIVQ(R2, R3); // 4
241 DIVQ(R2, R3); // 5
242 DIVQ(R2, R3); // 6
243 DIVQ(R2, R3); // 7
244 DIVQ(R2, R3); // 8
245 DIVQ(R2, R3); // 9
246 DIVQ(R2, R3); // 10
247 DIVQ(R2, R3); // 11
248 DIVQ(R2, R3); // 12
249 DIVQ(R2, R3); // 13
250 DIVQ(R2, R3); // 14
251 DIVQ(R2, R3); // 15
252 DIVQ(R2, R3); // 16
261 R3 = R2.L (Z); /* Q = X' / Y' */ define
262 R2 = R3; /* Preserve Q */
265 R0 = R3; /* Copy Q into result reg */
269 R3 = 0xFFFF (Z); define
271 CC = R2 == R3;
272 R3 = 1 ; define
273 R1 = R0 - R3;
H A Dmemmove.S29 R3 = R1 + R2; define
30 CC = R0 <= R3 (IU); /* (From+len) >= To */
33 R3 = 11; define
34 CC = R2 <= R3;
36 R3 = R1 | R0; /* OR addresses together */ define
37 R3 <<= 30; /* check bottom two bits */
44 R3 = 3; define
45 R2 = R2 & R3; /* remainder */
H A Dumulsi3_highpart.S18 R2 = R1.H * R0.H, R3 = R1.L * R0.H (FU);
23 R0 = R0 + R3;
H A Dmemset.S29 R3 = R0 + R2; /* end */ define
43 P2 = R3;
54 R2 = R3; /* end point */
55 R3 = P0; /* current position */ define
56 R2 = R2 - R3; /* bytes left */
H A Dmemchr.S32 R3 = B[P0++](Z); define
33 CC = R3 == R1;
H A Dmemcmp.S35 R3 = 3; define
36 R2 = R2 & R3; /* remainder */
H A Dstrncpy.S56 R3 = 0x20; define
57 CC = R2 < R3;
H A Dins.S24 # define DO_CLI cli R3;
35 # define DO_STI 2: sti R3;
H A Ddivsi3.S39 R3 = R0 ^ R1; define
163 CC = bittst(R3,30);
191 CC = bittst(R3,30);
/linux-4.4.14/arch/powerpc/lib/
H A Dhweight_64.S31 PPC_POPCNTB(R3,R3)
45 PPC_POPCNTB(R3,R3)
52 PPC_POPCNTW(R3,R3)
69 PPC_POPCNTB(R3,R3)
77 PPC_POPCNTW(R3,R3)
96 PPC_POPCNTB(R3,R3)
106 PPC_POPCNTD(R3,R3)
/linux-4.4.14/arch/x86/crypto/
H A Dtwofish-x86_64-asm_64.S57 #define R3 %rdx define
228 movq (R3), R1
229 movq 8(R3), R3
231 input_whitening(R3,%r11,c_offset)
236 shr $32, R3
239 encrypt_round(R0,R1,R2,R3,0);
240 encrypt_round(R2,R3,R0,R1,8);
241 encrypt_round(R0,R1,R2,R3,2*8);
242 encrypt_round(R2,R3,R0,R1,3*8);
243 encrypt_round(R0,R1,R2,R3,4*8);
244 encrypt_round(R2,R3,R0,R1,5*8);
245 encrypt_round(R0,R1,R2,R3,6*8);
246 encrypt_round(R2,R3,R0,R1,7*8);
247 encrypt_round(R0,R1,R2,R3,8*8);
248 encrypt_round(R2,R3,R0,R1,9*8);
249 encrypt_round(R0,R1,R2,R3,10*8);
250 encrypt_round(R2,R3,R0,R1,11*8);
251 encrypt_round(R0,R1,R2,R3,12*8);
252 encrypt_round(R2,R3,R0,R1,13*8);
253 encrypt_round(R0,R1,R2,R3,14*8);
254 encrypt_last_round(R2,R3,R0,R1,15*8);
281 movq (R3), R1
282 movq 8(R3), R3
284 output_whitening(R3,%r11,c_offset)
289 shr $32, R3
292 decrypt_round(R0,R1,R2,R3,15*8);
293 decrypt_round(R2,R3,R0,R1,14*8);
294 decrypt_round(R0,R1,R2,R3,13*8);
295 decrypt_round(R2,R3,R0,R1,12*8);
296 decrypt_round(R0,R1,R2,R3,11*8);
297 decrypt_round(R2,R3,R0,R1,10*8);
298 decrypt_round(R0,R1,R2,R3,9*8);
299 decrypt_round(R2,R3,R0,R1,8*8);
300 decrypt_round(R0,R1,R2,R3,7*8);
301 decrypt_round(R2,R3,R0,R1,6*8);
302 decrypt_round(R0,R1,R2,R3,5*8);
303 decrypt_round(R2,R3,R0,R1,4*8);
304 decrypt_round(R0,R1,R2,R3,3*8);
305 decrypt_round(R2,R3,R0,R1,2*8);
306 decrypt_round(R0,R1,R2,R3,1*8);
307 decrypt_last_round(R2,R3,R0,R1,0);
H A Dtwofish-i586-asm_32.S244 encrypt_round(R0,R1,R2,R3,0);
245 encrypt_round(R2,R3,R0,R1,8);
246 encrypt_round(R0,R1,R2,R3,2*8);
247 encrypt_round(R2,R3,R0,R1,3*8);
248 encrypt_round(R0,R1,R2,R3,4*8);
249 encrypt_round(R2,R3,R0,R1,5*8);
250 encrypt_round(R0,R1,R2,R3,6*8);
251 encrypt_round(R2,R3,R0,R1,7*8);
252 encrypt_round(R0,R1,R2,R3,8*8);
253 encrypt_round(R2,R3,R0,R1,9*8);
254 encrypt_round(R0,R1,R2,R3,10*8);
255 encrypt_round(R2,R3,R0,R1,11*8);
256 encrypt_round(R0,R1,R2,R3,12*8);
257 encrypt_round(R2,R3,R0,R1,13*8);
258 encrypt_round(R0,R1,R2,R3,14*8);
259 encrypt_last_round(R2,R3,R0,R1,15*8);
301 decrypt_round(R0,R1,R2,R3,15*8);
302 decrypt_round(R2,R3,R0,R1,14*8);
303 decrypt_round(R0,R1,R2,R3,13*8);
304 decrypt_round(R2,R3,R0,R1,12*8);
305 decrypt_round(R0,R1,R2,R3,11*8);
306 decrypt_round(R2,R3,R0,R1,10*8);
307 decrypt_round(R0,R1,R2,R3,9*8);
308 decrypt_round(R2,R3,R0,R1,8*8);
309 decrypt_round(R0,R1,R2,R3,7*8);
310 decrypt_round(R2,R3,R0,R1,6*8);
311 decrypt_round(R0,R1,R2,R3,5*8);
312 decrypt_round(R2,R3,R0,R1,4*8);
313 decrypt_round(R0,R1,R2,R3,3*8);
314 decrypt_round(R2,R3,R0,R1,2*8);
315 decrypt_round(R0,R1,R2,R3,1*8);
316 decrypt_last_round(R2,R3,R0,R1,0);
H A Daes-x86_64-asm_64.S31 #define R3 %rcx define
134 prologue(FUNC,KEY,B128,B192,R2,R8,R7,R9,R1,R3,R4,R6,R10,R5,R11)
136 #define return(FUNC) epilogue(FUNC,R8,R2,R9,R7,R5,R6,R3,R4,R11)
139 round(TAB,OFFSET,R1,R2,R3,R4,R5,R6,R7,R10,R5,R6,R3,R4) \
143 round(TAB,OFFSET,R1,R2,R3,R4,R5,R6,R7,R10,R5,R6,R3,R4)
146 round(TAB,OFFSET,R2,R1,R4,R3,R6,R5,R7,R10,R5,R6,R3,R4) \
150 round(TAB,OFFSET,R2,R1,R4,R3,R6,R5,R7,R10,R5,R6,R3,R4)
/linux-4.4.14/arch/blackfin/mach-bf609/
H A Ddpm.S27 R3.H = HI(0x00000010);
28 R3.L = LO(0x00000010);
32 [P0] = R3;
97 R3.H = HI(0x00000008);
98 R3.L = LO(0x00000008);
99 [P0] = R3;
/linux-4.4.14/arch/powerpc/kvm/
H A Dfpu.S28 * R3 = (double*)&fpscr
48 * R3 = (double*)&fpscr
70 * R3 = (double*)&fpscr
110 * R3 = (double*)&fpscr
134 * R3 = (double*)&fpscr
150 * R3 = (double*)&fpscr
166 * R3 = (double*)&fpscr
183 * R3 = (double*)&fpscr
202 * R3 = (double*)&fpscr
227 * R3 = (double*)&fpscr
H A Dbook3s_32_sr.S33 * R3 = shadow vcpu
H A Dbook3s_64_slb.S38 * R3 = shadow vcpu
H A Dbookehv_interrupts.S202 PPC_STL r3, VCPU_GPR(R3)(r4)
290 PPC_STL r3, VCPU_GPR(R3)(r11)
317 PPC_STL r3, VCPU_GPR(R3)(r11)
687 PPC_LL r3, VCPU_GPR(R3)(r4)
H A Dbooke_interrupts.S61 stw r3, VCPU_GPR(R3)(r4)
499 lwz r3, VCPU_GPR(R3)(r4)
H A Dbook3s_hv_rmhandlers.S1045 ld r3, VCPU_GPR(R3)(r4)
1129 std r3, VCPU_GPR(R3)(r9)
1458 TRECLAIM(R3)
1883 ld r3,VCPU_GPR(R3)(r9)
1913 std r3,VCPU_GPR(R3)(r4)
2191 std r0,VCPU_GPR(R3)(r3)
/linux-4.4.14/tools/perf/arch/arm/util/
H A Dunwind-libdw.c20 dwarf_regs[3] = REG(R3); libdw__arch_set_initial_registers()
/linux-4.4.14/lib/
H A Dtest_bpf.c48 #define R3 BPF_REG_3 macro
406 insn[i++] = BPF_MOV64_IMM(R3, 2); bpf_fill_ld_abs_vlan_push_pop()
1129 BPF_ALU64_IMM(BPF_MOV, R3, 3),
1139 BPF_ALU64_IMM(BPF_ADD, R3, 20),
1149 BPF_ALU64_IMM(BPF_SUB, R3, 10),
1159 BPF_ALU64_REG(BPF_ADD, R0, R3),
1171 BPF_ALU64_REG(BPF_ADD, R1, R3),
1183 BPF_ALU64_REG(BPF_ADD, R2, R3),
1192 BPF_ALU64_REG(BPF_ADD, R3, R0),
1193 BPF_ALU64_REG(BPF_ADD, R3, R1),
1194 BPF_ALU64_REG(BPF_ADD, R3, R2),
1195 BPF_ALU64_REG(BPF_ADD, R3, R3),
1196 BPF_ALU64_REG(BPF_ADD, R3, R4),
1197 BPF_ALU64_REG(BPF_ADD, R3, R5),
1198 BPF_ALU64_REG(BPF_ADD, R3, R6),
1199 BPF_ALU64_REG(BPF_ADD, R3, R7),
1200 BPF_ALU64_REG(BPF_ADD, R3, R8),
1201 BPF_ALU64_REG(BPF_ADD, R3, R9), /* R3 == 4063 */
1202 BPF_JMP_IMM(BPF_JEQ, R3, 4063, 1),
1207 BPF_ALU64_REG(BPF_ADD, R4, R3),
1219 BPF_ALU64_REG(BPF_ADD, R5, R3),
1231 BPF_ALU64_REG(BPF_ADD, R6, R3),
1243 BPF_ALU64_REG(BPF_ADD, R7, R3),
1255 BPF_ALU64_REG(BPF_ADD, R8, R3),
1267 BPF_ALU64_REG(BPF_ADD, R9, R3),
1287 BPF_ALU32_IMM(BPF_MOV, R3, 3),
1296 BPF_ALU64_IMM(BPF_ADD, R3, 10),
1305 BPF_ALU32_REG(BPF_ADD, R0, R3),
1317 BPF_ALU32_REG(BPF_ADD, R1, R3),
1329 BPF_ALU32_REG(BPF_ADD, R2, R3),
1338 BPF_ALU32_REG(BPF_ADD, R3, R0),
1339 BPF_ALU32_REG(BPF_ADD, R3, R1),
1340 BPF_ALU32_REG(BPF_ADD, R3, R2),
1341 BPF_ALU32_REG(BPF_ADD, R3, R3),
1342 BPF_ALU32_REG(BPF_ADD, R3, R4),
1343 BPF_ALU32_REG(BPF_ADD, R3, R5),
1344 BPF_ALU32_REG(BPF_ADD, R3, R6),
1345 BPF_ALU32_REG(BPF_ADD, R3, R7),
1346 BPF_ALU32_REG(BPF_ADD, R3, R8),
1347 BPF_ALU32_REG(BPF_ADD, R3, R9), /* R3 == 4063 */
1348 BPF_JMP_IMM(BPF_JEQ, R3, 4063, 1),
1353 BPF_ALU32_REG(BPF_ADD, R4, R3),
1365 BPF_ALU32_REG(BPF_ADD, R5, R3),
1377 BPF_ALU32_REG(BPF_ADD, R6, R3),
1389 BPF_ALU32_REG(BPF_ADD, R7, R3),
1401 BPF_ALU32_REG(BPF_ADD, R8, R3),
1413 BPF_ALU32_REG(BPF_ADD, R9, R3),
1433 BPF_ALU64_IMM(BPF_MOV, R3, 3),
1443 BPF_ALU64_REG(BPF_SUB, R0, R3),
1455 BPF_ALU64_REG(BPF_SUB, R1, R3),
1465 BPF_ALU64_REG(BPF_SUB, R2, R3),
1473 BPF_ALU64_REG(BPF_SUB, R3, R0),
1474 BPF_ALU64_REG(BPF_SUB, R3, R1),
1475 BPF_ALU64_REG(BPF_SUB, R3, R2),
1476 BPF_ALU64_REG(BPF_SUB, R3, R4),
1477 BPF_ALU64_REG(BPF_SUB, R3, R5),
1478 BPF_ALU64_REG(BPF_SUB, R3, R6),
1479 BPF_ALU64_REG(BPF_SUB, R3, R7),
1480 BPF_ALU64_REG(BPF_SUB, R3, R8),
1481 BPF_ALU64_REG(BPF_SUB, R3, R9),
1482 BPF_ALU64_IMM(BPF_SUB, R3, 10),
1486 BPF_ALU64_REG(BPF_SUB, R4, R3),
1496 BPF_ALU64_REG(BPF_SUB, R5, R3),
1506 BPF_ALU64_REG(BPF_SUB, R6, R3),
1516 BPF_ALU64_REG(BPF_SUB, R7, R3),
1526 BPF_ALU64_REG(BPF_SUB, R8, R3),
1536 BPF_ALU64_REG(BPF_SUB, R9, R3),
1547 BPF_ALU64_REG(BPF_SUB, R0, R3),
1574 BPF_ALU64_REG(BPF_XOR, R3, R3),
1577 BPF_JMP_REG(BPF_JEQ, R2, R3, 1),
1579 BPF_ALU64_REG(BPF_SUB, R3, R3),
1583 BPF_JMP_REG(BPF_JEQ, R3, R4, 1),
1587 BPF_ALU64_IMM(BPF_MOV, R3, 1),
1632 BPF_ALU64_IMM(BPF_MOV, R3, 3),
1642 BPF_ALU64_REG(BPF_MUL, R0, R3),
1654 BPF_ALU64_REG(BPF_MUL, R1, R3),
1672 BPF_ALU64_REG(BPF_MUL, R2, R3),
1723 BPF_MOV64_IMM(R3, 47),
1724 BPF_ALU64_REG(BPF_ARSH, R0, R3),
2107 BPF_MOV64_REG(R3, R2),
2109 BPF_ALU64_IMM(BPF_LSH, R3, 32),
2110 BPF_ALU64_IMM(BPF_RSH, R3, 32),
2114 BPF_JMP_IMM(BPF_JEQ, R3, 0x1234, 1),
2237 BPF_LD_IMM64(R3, 0x00000000ffffffffLL),
2239 BPF_JMP_REG(BPF_JEQ, R2, R3, 2),
2273 BPF_LD_IMM64(R3, 0x0),
2275 BPF_JMP_REG(BPF_JEQ, R2, R3, 2),
2289 BPF_LD_IMM64(R3, 0xffffffffffffffffLL),
2291 BPF_JMP_REG(BPF_JEQ, R2, R3, 2),
2388 BPF_LD_IMM64(R3, 0x00000000ffffffff),
2390 BPF_JMP_REG(BPF_JEQ, R2, R3, 2),
2448 BPF_LD_IMM64(R3, 0x1),
2450 BPF_JMP_REG(BPF_JEQ, R2, R3, 2),
2464 BPF_LD_IMM64(R3, 0xffffffffffffffffLL),
2466 BPF_JMP_REG(BPF_JEQ, R2, R3, 2),
2702 BPF_LD_IMM64(R3, 0x00000000ffffffff),
2704 BPF_JMP_REG(BPF_JEQ, R2, R3, 2),
2762 BPF_LD_IMM64(R3, 0xffffffffffffffffLL),
2764 BPF_JMP_REG(BPF_JEQ, R2, R3, 2),
2828 BPF_LD_IMM64(R3, 0x0000000000000001LL),
2830 BPF_JMP_REG(BPF_JEQ, R2, R3, 2),
2878 BPF_LD_IMM64(R3, 0x1UL),
2880 BPF_JMP_REG(BPF_JEQ, R2, R3, 2),
2927 BPF_LD_IMM64(R3, 0x0000000000000001LL),
2929 BPF_JMP_REG(BPF_JEQ, R2, R3, 2),
3153 BPF_LD_IMM64(R3, 0x0000000000000000LL),
3155 BPF_JMP_REG(BPF_JEQ, R2, R3, 2),
3169 BPF_LD_IMM64(R3, 0x0000ffffffff0000LL),
3171 BPF_JMP_REG(BPF_JEQ, R2, R3, 2),
3185 BPF_LD_IMM64(R3, 0xffffffffffffffffLL),
3187 BPF_JMP_REG(BPF_JEQ, R2, R3, 2),
3295 BPF_LD_IMM64(R3, 0x0000ffffffff0000LL),
3297 BPF_JMP_REG(BPF_JEQ, R2, R3, 2),
3311 BPF_LD_IMM64(R3, 0xffffffffffffffffLL),
3313 BPF_JMP_REG(BPF_JEQ, R2, R3, 2),
3327 BPF_LD_IMM64(R3, 0xffffffffffffffffLL),
3329 BPF_JMP_REG(BPF_JEQ, R2, R3, 2),
3437 BPF_LD_IMM64(R3, 0x0000ffffffff0000LL),
3439 BPF_JMP_REG(BPF_JEQ, R2, R3, 2),
3453 BPF_LD_IMM64(R3, 0xffff00000000ffffLL),
3455 BPF_JMP_REG(BPF_JEQ, R2, R3, 2),
3469 BPF_LD_IMM64(R3, 0xffffffffffffffffLL),
3471 BPF_JMP_REG(BPF_JEQ, R2, R3, 2),
3941 BPF_LD_IMM64(R3, 0xffffffffffffffffLL),
3944 BPF_JMP_REG(BPF_JEQ, R2, R3, 2),
/linux-4.4.14/tools/perf/arch/arm/tests/
H A Dregs_load.S6 #define R3 0x18 define
43 str r3, [r0, #R3]
/linux-4.4.14/arch/hexagon/kernel/
H A Dvm_entry.S147 { R3:2 = memd(R0 + #_PT_R0302); \
179 R3:2 = memd(R0 + #_PT_R0302); \
213 * Need to save off R0, R1, R2, R3 immediately.
223 memd(R29 +#_PT_R0302) = R3:2; \
232 memd(R29 + #_PT_ER_VMPSP) = R3:2; \
244 memd(R29 + #(_PT_R0302 + -_PT_REGS_SIZE)) = R3:2; \
256 R3:2 = G3:2; \
260 memd(R29 + #_PT_ER_VMPSP) = R3:2; \
335 R3:2 = memd(R29 + #_PT_ER_VMPSP);
341 G3:2 = R3:2;
/linux-4.4.14/drivers/media/usb/dvb-usb/
H A Ddigitv.h23 * <cmdbyte> VV <len> R0 R1 R2 R3
/linux-4.4.14/arch/powerpc/perf/
H A Dbhrb.S36 #define MFBHRB_TABLE1(n) PPC_MFBHRBE(R3,n); blr
/linux-4.4.14/arch/powerpc/net/
H A Dbpf_jit_asm.S105 /* R3 goes in parameter space of caller's frame */ \
111 /* R3 = r_skb, as passed */ \
116 /* R3 = 0 on success */ \
158 /* R3 goes in parameter space of caller's frame */ \
163 /* R3 = r_skb, as passed */ \
168 /* R3 != 0 on success */ \
H A Dbpf_jit_comp.c106 /* The RETs have left a return value in R3. */ bpf_jit_build_epilogue()
/linux-4.4.14/arch/powerpc/platforms/pseries/
H A DhvCall.S37 std r3,STK_PARAM(R3)(r1); \
49 ld r3,STACK_FRAME_OVERHEAD+STK_PARAM(R3)(r1); \
63 ld r0,STACK_FRAME_OVERHEAD+STK_PARAM(R3)(r1); \
64 std r3,STACK_FRAME_OVERHEAD+STK_PARAM(R3)(r1); \
70 ld r3,STK_PARAM(R3)(r1); \
/linux-4.4.14/arch/sparc/net/
H A Dbpf_jit_comp.c310 #define emit_sub(R1, R2, R3) \
311 *prog++ = (SUB | RS1(R1) | RS2(R2) | RD(R3))
313 #define emit_subi(R1, IMM, R3) \
314 *prog++ = (SUB | IMMED | RS1(R1) | S13(IMM) | RD(R3))
316 #define emit_add(R1, R2, R3) \
317 *prog++ = (ADD | RS1(R1) | RS2(R2) | RD(R3))
319 #define emit_addi(R1, IMM, R3) \
320 *prog++ = (ADD | IMMED | RS1(R1) | S13(IMM) | RD(R3))
322 #define emit_and(R1, R2, R3) \
323 *prog++ = (AND | RS1(R1) | RS2(R2) | RD(R3))
325 #define emit_andi(R1, IMM, R3) \
326 *prog++ = (AND | IMMED | RS1(R1) | S13(IMM) | RD(R3))
/linux-4.4.14/include/linux/mmc/
H A Dsd.h33 #define SD_APP_OP_COND 41 /* bcr [31:0] OCR R3 */
H A Dmmc.h30 #define MMC_SEND_OP_COND 1 /* bcr [31:0] OCR R3 */
/linux-4.4.14/arch/sh/boards/mach-sdk7780/
H A Dsetup.c95 .mv_name = "Renesas SDK7780-R3" ,
/linux-4.4.14/drivers/net/wan/
H A Dz85230.c470 write_zsreg(chan, R3, chan->regs[3] | RxENABLE); z8530_status()
475 write_zsreg(chan, R3, chan->regs[3] & ~RxENABLE); z8530_status()
591 write_zsreg(chan, R3, chan->regs[3] | RxENABLE); z8530_dma_status()
596 write_zsreg(chan, R3, chan->regs[3] & ~RxENABLE); z8530_dma_status()
727 intr = read_zsreg(&dev->chanA, R3); z8530_interrupt()
810 write_zsreg(c, R3, c->regs[R3]|RxENABLE); z8530_sync_open()
839 write_zsreg(c, R3, c->regs[R3]); z8530_sync_close()
963 write_zsreg(c, R3, c->regs[R3]|RxENABLE); z8530_sync_dma_open()
1032 write_zsreg(c, R3, c->regs[R3]); z8530_sync_dma_close()
1136 write_zsreg(c, R3, c->regs[R3]|RxENABLE); z8530_sync_txdma_open()
1196 write_zsreg(c, R3, c->regs[R3]); z8530_sync_txdma_close()
1408 write_zsreg(c, R3, c->regs[R3]|RxENABLE); z8530_channel_load()
H A Dz85230.h28 #define R3 3 macro
/linux-4.4.14/arch/powerpc/boot/
H A Ddiv64.S67 * R3/R4 has 64 bit value
69 * result in R3/R4
/linux-4.4.14/arch/arm/mach-iop13xx/
H A Dirq.c69 /* INTCTL3 CP6 R3 Page 4
103 /* INTSTR3 CP6 R3 Page 5
/linux-4.4.14/arch/sh/include/asm/
H A Dsyscall_32.h10 /* The system call number is given by the user in R3 */ syscall_get_nr()
/linux-4.4.14/include/linux/mfd/
H A Dadp5520.h140 #define ADP5520_GPIO_R3 (1 << 3) /* LED3 or GPIO3 aka R3 */
161 #define ADP5520_ROW_R3 (1 << 3) /* LED3 or GPIO3 aka R3 */
184 #define FLAG_ID_ADP5520_LED3_ADP5501_LED2 3 /* ADP5520 PIN R3 */
H A Dwm8400-audio.h74 * R3 (0x03) - Power Management (2)
/linux-4.4.14/drivers/tty/serial/
H A Dsunzilog.c209 write_zsreg(channel, R3, regs[R3] & ~RxENAB); __load_zsregs()
255 /* Rewrite R3/R5, this time without enables masked. */ __load_zsregs()
256 write_zsreg(channel, R3, regs[R3]); __load_zsregs()
539 r3 = read_zsreg(channel, R3); sunzilog_interrupt()
793 up->curregs[R3] |= RxENAB; __sunzilog_startup()
853 up->curregs[R3] &= ~RxENAB; sunzilog_shutdown()
883 up->curregs[R3] &= ~RxN_MASK; sunzilog_convert_to_zs()
887 up->curregs[R3] |= Rx5; sunzilog_convert_to_zs()
892 up->curregs[R3] |= Rx6; sunzilog_convert_to_zs()
897 up->curregs[R3] |= Rx7; sunzilog_convert_to_zs()
903 up->curregs[R3] |= Rx8; sunzilog_convert_to_zs()
1352 up->curregs[R3] = RxENAB | Rx8; sunzilog_init_hw()
1368 up->curregs[R3] = RxENAB | Rx8; sunzilog_init_hw()
H A Dip22zilog.c190 write_zsreg(channel, R3, regs[R3] & ~RxENAB); __load_zsregs()
222 /* Rewrite R3/R5, this time without enables masked. */ __load_zsregs()
223 write_zsreg(channel, R3, regs[R3]); __load_zsregs()
440 r3 = read_zsreg(channel, R3); ip22zilog_interrupt()
728 up->curregs[R3] |= RxENAB; __ip22zilog_startup()
788 up->curregs[R3] &= ~RxENAB; ip22zilog_shutdown()
1142 up->curregs[R3] = RxENAB | Rx8; ip22zilog_prepare()
H A Dpmac_zilog.c158 write_zsreg(uap, R3, regs[R3] & ~RxENABLE); pmz_load_zsregs()
189 /* Rewrite R3/R5, this time without enables masked. */ pmz_load_zsregs()
190 write_zsreg(uap, R3, regs[R3]); pmz_load_zsregs()
406 * R3 still signals the interrupts and we see them when taking pmz_transmit_chars()
409 * R3 interrup status bits are masked by R1 interrupt enable pmz_transmit_chars()
465 r3 = read_zsreg(uap_a, R3); pmz_interrupt()
876 uap->curregs[R3] = Rx8; __pmz_startup()
893 write_zsreg(uap, R3, uap->curregs[R3] |= RxENABLE); __pmz_startup()
987 uap->curregs[R3] &= ~RxENABLE; pmz_shutdown()
H A Dzs.c272 write_zsreg(zport, R3, regs[3] & ~RxENABLE); load_zsregs()
286 write_zsreg(zport, R3, regs[3]); load_zsregs()
722 zs_intreg = read_zsreg(zport_a, R3); zs_interrupt()
793 write_zsreg(zport, R3, zport->regs[3]); zs_startup()
819 write_zsreg(zport, R3, zport->regs[3]); zs_shutdown()
H A Dip22zilog.h41 #define R3 3 macro
H A Dsunzilog.h33 #define R3 3 macro
H A Dzs.h62 #define R3 3 macro
H A Dpmac_zilog.h129 #define R3 3 macro
/linux-4.4.14/arch/parisc/kernel/
H A Dunaligned.c121 #define R3(i) ((i)&0x1f) macro
546 ret = emulate_ldh(regs, R3(regs->iir)); handle_unaligned()
553 ret = emulate_ldw(regs, R3(regs->iir),0); handle_unaligned()
570 ret = emulate_ldd(regs, R3(regs->iir),0); handle_unaligned()
590 ret = emulate_ldd(regs,R3(regs->iir),1); handle_unaligned()
604 ret = emulate_std(regs,R3(regs->iir),1); handle_unaligned()
/linux-4.4.14/arch/microblaze/kernel/
H A Dhw_exception_handler.S251 * every of these handlers is entered having R3/4/5/6/11/current saved on stack
465 /* Working registers already saved: R3, R4, R5, R6
467 * R3 = EAR
595 /* Working registers already saved: R3, R4, R5, R6
596 * R3 = ESR
696 /* Working registers already saved: R3, R4, R5, R6
697 * R3 = ESR
709 /* Working registers already saved: R3, R4, R5, R6
710 * R3 = EAR, R4 = ESR
779 /* Working registers already saved: R3, R4, R5, R6
780 * R3 = ESR
940 * R3 = ESR
/linux-4.4.14/arch/powerpc/kernel/
H A Dcpu_setup_power.S99 * Called with initial LPCR in R3
H A Dfpu.S106 REST_32FPVSRS(0, R4, R3)
114 SAVE_32FPVSRS(0, R4, R3)
H A Dtm.S78 TABORT(R3)
110 std r3, STK_PARAM(R3)(r1)
206 ld r12, STK_PARAM(R3)(r1) /* Param 0, thread_struct * */
H A Dmisc_64.S364 LBZCIX(R3,R0,R3)
379 STBCIX(R3,R0,R4)
H A Didle_power7.S484 * R3 here contains the value that will be returned to the caller
504 * R3 here contains the value that will be returned to the caller
H A Dmisc_32.S604 * R3/R4 has 64 bit value
606 * result in R3/R4
/linux-4.4.14/arch/powerpc/mm/
H A Dtlb_nohash_low.S205 PPC_TLBIVAX(0, R3)
309 PPC_TLBILX_VA(0,R3)
360 PPC_TLBILX_VA(0,R3)
375 PPC_TLBIVAX(0,R3)
/linux-4.4.14/arch/arm/probes/kprobes/
H A Dactions-common.c147 /* Instruction only uses registers in the range R3..R15 */ kprobe_decode_ldmstm()
/linux-4.4.14/arch/arm/mach-iop13xx/include/mach/
H A Dirqs.h34 /* INTPND3 CP6 R3 Page 3
/linux-4.4.14/sound/soc/codecs/
H A Dwm8523.h60 * R3 (0x03) - AIF_CTRL1
H A Dwm8741.h74 * R3 (0x03) - DACRMSB_ATTENUATION
H A Dsta529.c101 { 3, 0x00 }, /* R3 - Left Volume */
H A Dwm8737.h91 * R3 (0x03) - AUDIO path R
H A Dwm8955.h74 * R3 (0x03) - ROUT1 volume
H A Dwm8523.c52 { 3, 0x1812 }, /* R3 - AIF_CTRL1 */
H A Dwm8804.c40 { 3, 0x21 }, /* R3 - PLL1 */
H A Dwm9090.c40 { 3, 0x0000 }, /* R3 - Power Management (3) */
H A Dwm8737.c53 { 3, 0x0007 }, /* R3 - AUDIO path R */
H A Dwm8741.c55 { 3, 0x0000 }, /* R3 - DACRMSB Attenuation */
H A Drt5670.c1591 SND_SOC_DAPM_INPUT("DMIC R3"),
1940 { "DMIC3", NULL, "DMIC R3" },
1976 { "DMIC R3", NULL, "DMIC CLK" },
1977 { "DMIC R3", NULL, "DMIC3 Power" },
1993 { "Mono DMIC R Mux", "DMIC3", "DMIC R3" },
H A Dwm8955.c54 { 3, 0x0079 }, /* R3 - ROUT1 volume */
H A Dwm8961.c39 { 3, 0x0000 }, /* R3 - ROUT1 volume */
H A Dwm8961.h156 * R3 (0x03) - ROUT1 volume
H A Dwm8990.h142 * R3 (0x03) - Power Management (3)
H A Dwm8991.h140 * R3 (0x03) - Power Management (3)
H A Dwm9081.h113 * R3 (0x03) - Analogue Speaker PGA
H A Dwm9090.h144 * R3 (0x03) - Power Management (3)
H A Dwm8983.c34 { 0x03, 0x0000 }, /* R3 - Power management 3 */
H A Dwm8983.h164 * R3 (0x03) - Power management 3
H A Dwm8985.c46 { 3, 0x0000 }, /* R3 - Power management 3 */
H A Dwm8985.h159 * R3 (0x03) - Power management 3
H A Dwm8990.c52 { 3, 0x0000 }, /* R3 - Power Management (3) */
H A Dwm8991.c42 { 3, 0x0000 }, /* R3 - Power Management (3) */
H A Dwm8993.c47 { 3, 0x0000 }, /* R3 - Power Management (3) */
H A Dwm9081.c35 { 3, 0x00B9 }, /* R3 - Analogue Speaker PGA */
H A Drt5677.c2673 SND_SOC_DAPM_INPUT("DMIC R3"),
3212 { "DMIC3", NULL, "DMIC R3" },
3221 { "DMIC R3", NULL, "DMIC CLK" },
3228 { "DMIC R3", NULL, "DMIC3 power" },
H A Dwm8993.h228 * R3 (0x03) - Power Management (3)
H A Dwm8962.c120 { 3, 0x0000 }, /* R3 - HPOUTR volume */
H A Dwm8962.h1240 * R3 (0x03) - HPOUTR volume
H A Dwm8995.h815 * R3 (0x03) - Power Management (3)
H A Dwm8996.h807 * R3 (0x03) - Power Management (3)
/linux-4.4.14/arch/arm/vfp/
H A Dvfp.h52 "adc %R1, %R3, %R5" add128()
65 "sbc %R1, %R3, %R5\n\t" sub128()
/linux-4.4.14/arch/arm/include/asm/
H A Ddiv64.h190 "umlal %R0, %1, %Q2, %R3\n\t" \
194 "umlal %Q0, %R0, %R2, %R3" \
/linux-4.4.14/arch/sh/kernel/
H A Dsignal_32.c53 #define MOVW(n) (0x9300|((n)-2)) /* Move mem word at PC+n to R3 */
55 #define TRAP_NOARG 0xc320 /* Syscall w/no args (NR in R3) */
57 #define TRAP_NOARG 0xc310 /* Syscall w/no args (NR in R3) */
H A Dprocess_32.c48 printk("R0 : %08lx R1 : %08lx R2 : %08lx R3 : %08lx\n", show_regs()
H A Dentry-common.S268 * Syscall #: R3
H A Dprocess_64.c82 printk("R3 : %08Lx%08Lx R4 : %08Lx%08Lx R5 : %08Lx%08Lx\n", show_regs()
/linux-4.4.14/arch/sh/lib/
H A Dmemcpy.S38 mov r0,r3 ! Save the value on R0 to R3
H A Dmemmove.S48 mov r0,r3 ! Save the value on R0 to R3
/linux-4.4.14/arch/m32r/kernel/
H A Dprocess.c82 printk("R0 [%08lx]:R1 [%08lx]:R2 [%08lx]:R3 [%08lx]\n", \ show_regs()
H A Dentry.S91 #define R3(reg) @(0x1C,reg) define
255 ld r3, R3(sp)
/linux-4.4.14/arch/blackfin/kernel/
H A Dftrace-entry.S28 * the profiled function is using them. With data registers, R3 is the
H A Dpseudodbg.c13 "R0", "R1", "R2", "R3", "R4", "R5", "R6", "R7",
H A Dtrace.c959 pr_notice(" R0 : %08lx R1 : %08lx R2 : %08lx R3 : %08lx\n", show_regs()
/linux-4.4.14/arch/arm/mach-pxa/
H A Dcsb726.c38 * XXX: 79 CS_3 for LAN9215 or PSKTSEL on R2, R3
/linux-4.4.14/drivers/net/hamradio/
H A Dscc.c359 or(scc,R3,ENT_HM|RxENABLE); /* enable the receiver, hunt mode */ start_hunt()
472 cl(scc,R3,ENT_HM|RxENABLE); /* disable the receiver */ scc_exint()
524 or(scc,R3,ENT_HM); /* enter hunt mode for next flag */ scc_rxint()
538 or(scc, R3, ENT_HM); scc_rxint()
554 or(scc, R3, ENT_HM); scc_rxint()
578 or(scc,R3,ENT_HM); /* enter hunt mode for next flag */ scc_spint()
675 for (k = 0; InReg(ctrl->chan_A,R3) && k < SCC_IRQTIMEOUT; k++) scc_isr()
801 wr(scc,R3,Rx8|RxCRC_ENAB); /* RX 8 bits/char, CRC, disabled */ init_channel()
923 cl(scc, R3, RxENABLE|ENT_HM); /* switch off receiver */ scc_key_trx()
961 cl(scc, R3, RxENABLE); scc_key_trx()
1606 wr(scc,R3,0); scc_net_close()
H A Ddmascc.c761 write_scc(priv, R3, Rx8); scc_open()
1052 write_scc(priv, R3, RxENABLE | Rx8 | RxCRC_ENAB); rx_on()
1059 write_scc(priv, R3, Rx8); rx_off()
1098 while ((is = read_scc(&info->priv[0], R3)) && i--) { z8530_isr()
H A Dz8530.h9 #define R3 3 macro
/linux-4.4.14/drivers/net/wireless/iwlegacy/
H A D4965.c1581 s32 R1, R2, R3; il4965_hw_get_temperature() local
1589 R3 = (s32) le32_to_cpu(il->card_alive_init.therm_r3[1]); il4965_hw_get_temperature()
1595 R3 = (s32) le32_to_cpu(il->card_alive_init.therm_r3[0]); il4965_hw_get_temperature()
1613 D_TEMP("Calib values R[1-3]: %d %d %d R4: %d\n", R1, R2, R3, vt); il4965_hw_get_temperature()
1615 if (R3 == R1) { il4965_hw_get_temperature()
1616 IL_ERR("Calibration conflict R1 == R3\n"); il4965_hw_get_temperature()
1623 temperature /= (R3 - R1); il4965_hw_get_temperature()
H A D4965.h239 * calculation uses 4 measurements, 3 of which (R1, R2, R3) are calibration
254 * degrees Kelvin = ((97 * 259 * (R4 - R2) / (R3 - R1)) / 100) + 8
256 * NOTE: The basic formula is 259 * (R4-R2) / (R3-R1). The 97/100 is
/linux-4.4.14/drivers/media/dvb-frontends/
H A Ddrxd_hard.c95 u16 R3; member in struct:SCfgAgc
878 Vin - R3 - * -- Vout ReadIFAgc()
886 u32 R3 = state->if_agc_cfg.R3; ReadIFAgc() local
890 if (R2 == 0 && (R1 == 0 || R3 == 0)) ReadIFAgc()
894 Rpar = (R2 * R3) / (R3 + R2); ReadIFAgc()
2516 state->if_agc_cfg.R3 = (u16) (ulIfAgcR3); CDRXD()
2520 state->rf_agc_cfg.R3 = (u16) (ulRfAgcR3); CDRXD()
H A Ddvb-pll.c513 /* byte 4 : 1 * * AGD R3 R2 R1 R0
515 * AGD = 1, R3 R2 R1 R0 = 0 1 0 1 => byte 4 = 1**10101 = 0x95
H A Dzl10036.c173 * 5[0x00]: P0 | C1 | C0 | R4 | R3 | R2 | R1 | R0
/linux-4.4.14/arch/cris/arch-v32/kernel/
H A Dkgdb_asm.S35 move.d $r3, [$acr] ; Save R3
477 move.d [$acr], $r3 ; Restore R3
H A Dkgdb.c311 R0, R1, R2, R3, enumerator in enum:register_name
/linux-4.4.14/drivers/staging/speakup/
H A Dspeakup_apollo.c105 .init = "@R3@D0@K1\r",
/linux-4.4.14/drivers/pinctrl/mediatek/
H A Dpinctrl-mtk-mt6397.h312 "R3", "mt6397",
H A Dpinctrl-mtk-mt8127.h959 "R3", "mt8127",
H A Dpinctrl-mtk-mt8135.h1748 "R3", "mt8135",
/linux-4.4.14/arch/blackfin/mach-common/
H A Ddpmc_modes.S141 R3 = P5; define
/linux-4.4.14/arch/sh/kernel/cpu/sh2/
H A Dentry.S105 mov.l @r2+,r0 ! old R3
/linux-4.4.14/drivers/mmc/host/
H A Dmmc_spi.c246 * cmd->resp[1] holds any four-byte response, for R3 (READ_OCR) and on
256 case MMC_RSP_SPI_R3: return "R3/R4/R7"; maptype()
388 /* SPI R3, R4, or R7 == R1 + 4 bytes */ mmc_spi_response_get()
480 * + four data bytes, for R3 and R7 responses mmc_spi_command_send()
516 else if (cmd->flags & MMC_RSP_SPI_B4) /* R3/R4/R7 */ mmc_spi_command_send()
H A Dtoshsd.c248 /* R1, R1B, R3, R6, R7 */ toshsd_cmd_irq()
H A Ddavinci_mmc.c302 s = ", R3/R4 response"; mmc_davinci_start_command()
H A Drtsx_usb_sdmmc.c318 * R3, R4 sd_send_cmd_get_rsp()
H A Ds3cmci.c184 " R2:[%08x] R3:[%08x]\n", dbg_dumpregs()
H A Dsh_mmcif.c75 #define CMD_SET_RTYP_6B ((0 << 23) | (1 << 22)) /* R1/R1b/R3/R4/R5 */
/linux-4.4.14/arch/cris/arch-v10/kernel/
H A Dkgdb.c303 R0, R1, R2, R3, enumerator in enum:register_name
931 " move.d $r3,[cris_reg+0x0C] ; Save R3\n"
984 " move.d [cris_reg+0x0C],$r3 ; Restore R3\n"
1027 " move.d $r3,[cris_reg+0x0C] ; Save R3\n"
1082 " move.d [cris_reg+0x0C],$r3 ; Restore R3\n"
/linux-4.4.14/drivers/staging/rtl8188eu/hal/
H A DHal8188ERateAdaptive.c731 ("macid =%d Total =%d R0 =%d R1 =%d R2 =%d R3 =%d R4 =%d D0 =%d valid0 =%x valid1 =%x\n", ODM_RA_TxRPT2Handle_8188E()
754 ("macid =%d R0 =%d R1 =%d R2 =%d R3 =%d R4 =%d drop =%d valid0 =%x RateID =%d SGI =%d\n", ODM_RA_TxRPT2Handle_8188E()
/linux-4.4.14/arch/sh/boards/
H A Dboard-magicpanelr2.c180 * R3 A21; R2 A20; R1 A19; R0 A0; setup_port_multiplexing()
/linux-4.4.14/arch/ia64/kernel/
H A Dunwind_decoder.c192 UNW_DEC_PROLOGUE(R3, ((code & 0x3) == 1), rlen, arg); unw_decode_r3()
/linux-4.4.14/drivers/input/mouse/
H A Dvsxxxaa.c328 * [0]: 1 0 1 0 R3 R2 R1 R0 vsxxxaa_handle_POR_packet()
/linux-4.4.14/drivers/mfd/
H A Dwm8350-regmap.c30 { 0xBE3B, 0xBE3B, 0x8000 }, /* R3 - System Control 1 */
H A Dwm8994-regmap.c25 { 0x0003, 0x0000 }, /* R3 - Power Management (3) */
257 { 0x0003, 0x0000 }, /* R3 - Power Management (3) */
476 { 0x0003, 0x0000 }, /* R3 - Power Management (3) */
/linux-4.4.14/include/linux/mfd/wm8350/
H A Dcore.h95 * R3 (0x03) - System Control 1
/linux-4.4.14/arch/hexagon/lib/
H A Dmemcpy.S175 #define epilog R3 /* bytes in epilog */
/linux-4.4.14/arch/arm/probes/
H A Ddecode.h252 * instruction will be modified to "AND R0, R2, R3, ASL R1" and then placed into
/linux-4.4.14/arch/arm/kernel/
H A Dentry-header.S60 * xPSR, ReturnAddress(), LR (R14), R12, R3, R2, R1, and R0 are
H A Dunwind.c303 /* pop R0-R3 according to mask */ unwind_exec_pop_subset_r0_to_r3()
/linux-4.4.14/drivers/misc/echo/
H A Decho.c155 R0 = R0 + R3 (NS) || lms_adapt_bg()
/linux-4.4.14/drivers/net/ethernet/chelsio/cxgb4vf/
H A Dcxgb4vf_main.c1906 #define R3(fmt, s, v) S3(fmt, s, rxq[qs].v) sge_qstats_show() macro
1907 #define R(s, v) R3("lu", s, v) sge_qstats_show()
1919 R3("u", "RspQNullInts:", rspq.unhandled_irqs); sge_qstats_show()
1960 #undef R3 sge_qstats_show() macro
/linux-4.4.14/arch/s390/mm/
H A Dfault.c157 pr_cont("R3:%016lx ", *table); dump_pagetable()
/linux-4.4.14/arch/blackfin/include/asm/
H A Ddpmc.h17 #define PM_REG4 R3
/linux-4.4.14/arch/arm/mach-ux500/
H A Dboard-mop500-regulators.c58 /* Main display, u8500 R3 uib */
/linux-4.4.14/drivers/net/ethernet/chelsio/cxgb4/
H A Dcxgb4_debugfs.c2273 #define R3(fmt_spec, s, v) S3(fmt_spec, s, rx[i].v) sge_qinfo_show() macro
2275 #define RL(s, v) R3("lu", s, v) sge_qinfo_show()
2442 #undef R3 sge_qinfo_show() macro
/linux-4.4.14/drivers/net/wireless/rt2x00/
H A Drt61pci.h1112 * R3
H A Drt73usb.h761 * R3
/linux-4.4.14/samples/bpf/
H A Dtest_verifier.c1118 .errstr_unpriv = "R3 leaks addr into helper",
/linux-4.4.14/arch/s390/net/
H A Dbpf_jit_comp.c1203 * BPF_REG_2 (R3) : offset of byte(s) to fetch in skb bpf_jit_insn()
/linux-4.4.14/sound/usb/
H A Dpcm.c1357 * L1 L2 0x05 R1 R2 0x05 L3 L4 0xfa R3 R4 0xfa fill_playback_urb_dsd_dop()
/linux-4.4.14/net/sctp/
H A Doutqueue.c1390 * R3) Whenever a SACK is received sctp_check_transmitted()
/linux-4.4.14/drivers/hid/
H A Dhid-sony.c875 [0x03] = BTN_THUMBR, /* R3 */
/linux-4.4.14/drivers/dma/ppc4xx/
H A Dadma.c2322 /* do RXOR R1 R2 R3 */ ppc440spe_dma01_prep_pq()
/linux-4.4.14/include/linux/mfd/wm8994/
H A Dregisters.h997 * R3 (0x03) - Power Management (3)
/linux-4.4.14/sound/pci/hda/
H A Dpatch_sigmatel.c1987 "Alienware M17x R3", STAC_DELL_EQ),

Completed in 3189 milliseconds