Searched refs:rn (Results 26 - 50 of 99) sorted by relevance

1234

/linux-master/arch/arm64/crypto/
H A Dsm4-ce-cipher-core.S10 .macro sm4e, rd, rn
11 .inst 0xcec08400 | .L\rd | (.L\rn << 5)
H A Dsha512-ce-core.S20 .macro sha512h, rd, rn, rm
21 .inst 0xce608000 | .L\rd | (.L\rn << 5) | (.L\rm << 16)
24 .macro sha512h2, rd, rn, rm
25 .inst 0xce608400 | .L\rd | (.L\rn << 5) | (.L\rm << 16)
28 .macro sha512su0, rd, rn
29 .inst 0xcec08000 | .L\rd | (.L\rn << 5)
32 .macro sha512su1, rd, rn, rm
33 .inst 0xce608800 | .L\rd | (.L\rn << 5) | (.L\rm << 16)
H A Dsha3-ce-core.S23 .macro eor3, rd, rn, rm, ra
24 .inst 0xce000000 | .L\rd | (.L\rn << 5) | (.L\ra << 10) | (.L\rm << 16)
27 .macro rax1, rd, rn, rm
28 .inst 0xce608c00 | .L\rd | (.L\rn << 5) | (.L\rm << 16)
31 .macro bcax, rd, rn, rm, ra
32 .inst 0xce200000 | .L\rd | (.L\rn << 5) | (.L\ra << 10) | (.L\rm << 16)
35 .macro xar, rd, rn, rm, imm6
36 .inst 0xce800000 | .L\rd | (.L\rn << 5) | ((\imm6) << 10) | (.L\rm << 16)
/linux-master/tools/testing/selftests/powerpc/include/
H A Dreg.h12 #define mfspr(rn) ({unsigned long rval; \
13 asm volatile("mfspr %0," _str(rn) \
15 #define mtspr(rn, v) asm volatile("mtspr " _str(rn) ",%0" : \
/linux-master/arch/arm/net/
H A Dbpf_jit_32.c351 static u32 arm_bpf_ldst_imm12(u32 op, u8 rt, u8 rn, s16 imm12) argument
353 op |= rt << 12 | rn << 16;
361 static u32 arm_bpf_ldst_imm8(u32 op, u8 rt, u8 rn, s16 imm8) argument
363 op |= rt << 12 | rn << 16;
371 #define ARM_LDR_I(rt, rn, off) arm_bpf_ldst_imm12(ARM_INST_LDR_I, rt, rn, off)
372 #define ARM_LDRB_I(rt, rn, off) arm_bpf_ldst_imm12(ARM_INST_LDRB_I, rt, rn, off)
373 #define ARM_LDRD_I(rt, rn, off) arm_bpf_ldst_imm8(ARM_INST_LDRD_I, rt, rn, of
520 emit_udivmod(u8 rd, u8 rm, u8 rn, struct jit_ctx *ctx, u8 op, u8 sign) argument
588 emit_udivmod64(const s8 *rd, const s8 *rm, const s8 *rn, struct jit_ctx *ctx, u8 op, u8 sign) argument
1350 emit_ar_r(const u8 rd, const u8 rt, const u8 rm, const u8 rn, struct jit_ctx *ctx, u8 op, bool is_jmp64) argument
1475 emit_rev16(const u8 rd, const u8 rn, struct jit_ctx *ctx) argument
1490 emit_rev32(const u8 rd, const u8 rn, struct jit_ctx *ctx) argument
1601 s8 rd_lo, rt, rm, rn; local
[all...]
/linux-master/arch/arm/mm/
H A Dabort-lv4t.S37 /* 0 */ b .data_arm_lateldrhpost @ ldrh rd, [rn], #m/rm
38 /* 1 */ b .data_arm_lateldrhpre @ ldrh rd, [rn, #m/rm]
41 /* 4 */ b .data_arm_lateldrpostconst @ ldr rd, [rn], #m
42 /* 5 */ b .data_arm_lateldrpreconst @ ldr rd, [rn, #m]
43 /* 6 */ b .data_arm_lateldrpostreg @ ldr rd, [rn], rm
44 /* 7 */ b .data_arm_lateldrprereg @ ldr rd, [rn, rm]
45 /* 8 */ b .data_arm_ldmstm @ ldm*a rn, <rlist>
46 /* 9 */ b .data_arm_ldmstm @ ldm*b rn, <rlist>
49 /* c */ b do_DataAbort @ ldc rd, [rn], #m @ Same as ldr rd, [rn], #
[all...]
H A Dproc-macros.S19 .macro vma_vm_mm, rd, rn
20 ldr \rd, [\rn, #VMA_VM_MM]
26 .macro vma_vm_flags, rd, rn
27 ldr \rd, [\rn, #VMA_VM_FLAGS]
45 .macro mmid, rd, rn
47 ldr \rd, [\rn, #MM_CONTEXT_ID + 4 ]
49 ldr \rd, [\rn, #MM_CONTEXT_ID]
56 .macro asid, rd, rn
57 and \rd, \rn, #255
/linux-master/arch/sh/kernel/
H A Dtraps_32.c106 unsigned long *rm, *rn; local
111 rn = &regs->regs[index];
127 case 0: /* mov.[bwl] to/from memory via r0+rn */
132 dst = (unsigned char *)rn;
148 dstu = (unsigned char __user *)*rn;
159 dstu = (unsigned char __user *)*rn;
169 *rn -= count;
171 dstu = (unsigned char __user *)*rn;
183 dst = (unsigned char *)rn;
195 dst = (unsigned char*) rn;
[all...]
H A Ddisassemble.c301 int rn = 0; local
361 rn = nibs[n];
367 rn = (nibs[n] & 0xc) >> 2;
393 pr_cont("r%d", rn);
396 pr_cont("@r%d+", rn);
399 pr_cont("@-r%d", rn);
402 pr_cont("@r%d", rn);
405 pr_cont("@(%d,r%d)", imm, rn);
432 pr_cont("@(r0,r%d)", rn);
479 pr_cont("fr%d", rn);
[all...]
/linux-master/arch/arm64/kernel/
H A Dcompat_alignment.c106 * B = rn pointer before instruction, A = rn pointer after instruction
117 unsigned int rd, rn, nr_regs, regbits; local
124 rn = RN_BITS(instr);
125 newaddr = eaddr = regs->regs[rn];
162 regs->regs[rn] = newaddr;
H A Dentry-ftrace.S225 .macro mcount_adjust_addr rd, rn
226 sub \rd, \rn, #AARCH64_INSN_SIZE
/linux-master/drivers/gpu/drm/i915/gt/
H A Dintel_gt_requests.c19 struct i915_request *rq, *rn; local
21 list_for_each_entry_safe(rq, rn, &tl->requests, link)
243 struct i915_request *rq, *rn; local
250 llist_for_each_entry_safe(rq, rn, first, watchdog.link) {
/linux-master/include/linux/
H A Dmath64.h208 } rl, rm, rn, rh, a0, b0; local
216 rn.ll = mul_u32_u32(a0.l.high, b0.l.low);
224 rl.l.high = c = (u64)rl.l.high + rm.l.low + rn.l.low;
225 rh.l.low = c = (c >> 32) + rm.l.high + rn.l.high + rh.l.low;
/linux-master/sound/soc/sof/amd/
H A DMakefile9 snd-sof-amd-renoir-objs := pci-rn.o renoir.o
/linux-master/drivers/w1/
H A Dw1_netlink.c236 static void w1_send_slave(struct w1_master *dev, u64 rn) argument
252 *data = rn;
258 static void w1_found_send_slave(struct w1_master *dev, u64 rn) argument
261 w1_slave_found(dev, rn);
263 w1_send_slave(dev, rn);
275 u64 rn; local
278 memcpy(&rn, &sl->reg_num, sizeof(rn));
279 w1_send_slave(dev, rn);
/linux-master/drivers/md/persistent-data/
H A Ddm-btree.c659 struct btree_node *ln, *rn, *pn; local
669 rn = dm_block_data(right);
671 rn->header.flags = ln->header.flags;
672 rn->header.nr_entries = cpu_to_le32(0);
673 rn->header.max_entries = ln->header.max_entries;
674 rn->header.value_size = ln->header.value_size;
675 redistribute2(ln, rn);
684 le64_to_cpu(rn->keys[0]), &location);
691 if (key < le64_to_cpu(rn->keys[0])) {
743 struct btree_node *ln, *rn, *m local
844 struct btree_node *pn, *ln, *rn; local
[all...]
/linux-master/arch/arm/probes/kprobes/
H A Dcheckers-arm.c122 unsigned int rn = (insn >> 16) & 0xf; local
123 asi->register_usage_flags = reglist | (1 << rn);
/linux-master/drivers/infiniband/ulp/ipoib/
H A Dipoib_vlan.c99 struct rdma_netdev *rn = netdev_priv(ndev); local
120 rn->mtu = priv->mcast_mtu;
/linux-master/drivers/s390/char/
H A Dsclp_early_core.c345 unsigned long rn, rzm; local
372 rn = sccb->entries[sn] >> 16;
373 add_physmem_online_range((rn - 1) * rzm, rn * rzm);
/linux-master/arch/arm/probes/uprobes/
H A Dactions-arm.c166 int rn = (insn >> 16) & 0xf; local
168 unsigned used = reglist | (1 << rn);
170 if (rn == 15)
/linux-master/tools/testing/selftests/kvm/x86_64/
H A Dhyperv_clock.c27 } rm, rn, rh, a0, b0; local
34 rn.ll = (u64)a0.l.high * b0.l.low;
37 rh.l.low = c = rm.l.high + rn.l.high + rh.l.low;
/linux-master/drivers/scsi/csiostor/
H A Dcsio_scsi.c204 struct csio_rnode *rn = req->rnode; local
211 wr->flowid_len16 = cpu_to_be32(FW_WR_FLOWID_V(rn->flowid) |
363 struct csio_rnode *rn = req->rnode; local
372 wr->flowid_len16 = cpu_to_be32(FW_WR_FLOWID_V(rn->flowid) |
416 struct csio_rnode *rn = req->rnode; local
425 wr->flowid_len16 = cpu_to_be32(FW_WR_FLOWID_V(rn->flowid) |
650 struct csio_rnode *rn = req->rnode; local
654 wr->flowid_len16 = cpu_to_be32(FW_WR_FLOWID_V(rn->flowid) |
777 struct csio_rnode *rn; local
800 rn
1572 struct csio_rnode *rn = (struct csio_rnode *)(cmnd->device->hostdata); local
1784 struct csio_rnode *rn = (struct csio_rnode *)(cmnd->device->hostdata); local
1922 struct csio_rnode *rn = (struct csio_rnode *)(cmnd->device->hostdata); local
2067 struct csio_rnode *rn = (struct csio_rnode *)(cmnd->device->hostdata); local
[all...]
/linux-master/arch/arm/include/asm/
H A Dassembler.h311 .macro set_current, rn:req, tmp:req
313 9998: mcr p15, 0, \rn, c13, c0, 3 @ set TPIDRURO register variable
317 .L0_\@: str_va \rn, __current, \tmp
323 str_va \rn, __current, \tmp
715 .macro str_va, rn:req, sym:req, tmp:req, cond
716 __ldst_va str, \rn, \tmp, \sym, \cond, 0
/linux-master/drivers/infiniband/hw/hfi1/
H A Dipoib.h136 struct rdma_netdev rn; /* keep this first */ member in struct:hfi1_ipoib_rdma_netdev
/linux-master/samples/bpf/
H A Dtest_lru_dist.c441 int rn; local
443 rn = rand();
445 if (rn % 10) {
446 key = rn % nr_stable_elems + stable_base;

Completed in 247 milliseconds

1234