Home
last modified time | relevance | path

Searched refs:Rt (Results 1 – 9 of 9) sorted by relevance

/linux-4.1.27/arch/arm64/net/
Dbpf_jit.h34 #define A64_COMP_BRANCH(sf, Rt, offset, type) \ argument
35 aarch64_insn_gen_comp_branch_imm(0, offset, Rt, A64_VARIANT(sf), \
37 #define A64_CBZ(sf, Rt, imm19) A64_COMP_BRANCH(sf, Rt, (imm19) << 2, ZERO) argument
38 #define A64_CBNZ(sf, Rt, imm19) A64_COMP_BRANCH(sf, Rt, (imm19) << 2, NONZERO) argument
62 #define A64_LS_REG(Rt, Rn, Rm, size, type) \ argument
63 aarch64_insn_gen_load_store_reg(Rt, Rn, Rm, \
76 #define A64_LS_PAIR(Rt, Rt2, Rn, offset, ls, type) \ argument
77 aarch64_insn_gen_load_store_pair(Rt, Rt2, Rn, offset, \
81 #define A64_PUSH(Rt, Rt2, Rn) A64_LS_PAIR(Rt, Rt2, Rn, -16, STORE, PRE_INDEX) argument
83 #define A64_POP(Rt, Rt2, Rn) A64_LS_PAIR(Rt, Rt2, Rn, 16, LOAD, POST_INDEX) argument
/linux-4.1.27/Documentation/arm/
Dvlocks.txt132 LDR Rt, [Rn]
133 CMP Rt, #0
137 LDRB Rt, [Rn]
138 CMP Rt, #0
139 LDRBEQ Rt, [Rn, #1]
140 CMPEQ Rt, #0
141 LDRBEQ Rt, [Rn, #2]
142 CMPEQ Rt, #0
143 LDRBEQ Rt, [Rn, #3]
144 CMPEQ Rt, #0
[all …]
/linux-4.1.27/drivers/input/touchscreen/
Dad7879.c135 int Rt; member
156 unsigned Rt; in ad7879_report() local
181 Rt = (z2 - z1) * x * ts->x_plate_ohms; in ad7879_report()
182 Rt /= z1; in ad7879_report()
183 Rt = (Rt + 2047) >> 12; in ad7879_report()
189 if (Rt > ts->pressure_max) in ad7879_report()
203 input_report_abs(input_dev, ABS_PRESSURE, ts->Rt); in ad7879_report()
209 ts->Rt = Rt; in ad7879_report()
Dads7846.c750 unsigned int Rt; in ads7846_report_state() local
775 Rt = ts->pressure_max / 2; in ads7846_report_state()
778 Rt = ts->pressure_max / 2; in ads7846_report_state()
780 Rt = 0; in ads7846_report_state()
781 dev_vdbg(&ts->spi->dev, "x/y: %d/%d, PD %d\n", x, y, Rt); in ads7846_report_state()
784 Rt = z2; in ads7846_report_state()
785 Rt -= z1; in ads7846_report_state()
786 Rt *= x; in ads7846_report_state()
787 Rt *= ts->x_plate_ohms; in ads7846_report_state()
788 Rt /= z1; in ads7846_report_state()
[all …]
Dad7877.c334 unsigned Rt; in ad7877_process_data() local
354 Rt = (z2 - z1) * x * ts->x_plate_ohms; in ad7877_process_data()
355 Rt /= z1; in ad7877_process_data()
356 Rt = (Rt + 2047) >> 12; in ad7877_process_data()
362 if (Rt > ts->pressure_max) in ad7877_process_data()
370 input_report_abs(input_dev, ABS_PRESSURE, Rt); in ad7877_process_data()
/linux-4.1.27/arch/arm64/kvm/
Dsys_regs.h31 u8 Rt; member
76 *vcpu_reg(vcpu, p->Rt) = 0; in read_zero()
Dsys_regs.c103 val = *vcpu_reg(vcpu, p->Rt); in access_vm_reg()
131 val = *vcpu_reg(vcpu, p->Rt); in access_gic_sgi()
154 *vcpu_reg(vcpu, p->Rt) = (1 << 3); in trap_oslsr_el1()
168 *vcpu_reg(vcpu, p->Rt) = val; in trap_dbgauthstatus_el1()
205 vcpu_sys_reg(vcpu, r->reg) = *vcpu_reg(vcpu, p->Rt); in trap_debug_regs()
208 *vcpu_reg(vcpu, p->Rt) = vcpu_sys_reg(vcpu, r->reg); in trap_debug_regs()
497 *vcpu_reg(vcpu, p->Rt) = ((((dfr >> 20) & 0xf) << 28) | in trap_dbgidr()
510 vcpu_cp14(vcpu, r->reg) = *vcpu_reg(vcpu, p->Rt); in trap_debug32()
513 *vcpu_reg(vcpu, p->Rt) = vcpu_cp14(vcpu, r->reg); in trap_debug32()
838 params.Rt = (hsr >> 5) & 0xf; in kvm_handle_cp_64()
[all …]
Dsys_regs_generic_v8.c40 *vcpu_reg(vcpu, p->Rt) = vcpu_sys_reg(vcpu, ACTLR_EL1); in access_actlr()
/linux-4.1.27/arch/arm/mach-omap2/
Dsram34xx.S133 .macro strtext Rt:req, label:req
134 ARM( str \Rt, \label )
135 THUMB( str \Rt, [r7, \label - omap3_sram_configure_core_dpll] )