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

/linux-master/arch/arm64/net/
H A Dbpf_jit.h23 #define A64_COMP_BRANCH(sf, Rt, offset, type) \
24 aarch64_insn_gen_comp_branch_imm(0, offset, Rt, A64_VARIANT(sf), \
26 #define A64_CBZ(sf, Rt, imm19) A64_COMP_BRANCH(sf, Rt, (imm19) << 2, ZERO)
27 #define A64_CBNZ(sf, Rt, imm19) A64_COMP_BRANCH(sf, Rt, (imm19) << 2, NONZERO)
56 #define A64_LS_REG(Rt, Rn, Rm, size, type) \
57 aarch64_insn_gen_load_store_reg(Rt, Rn, Rm, \
73 #define A64_LS_IMM(Rt, Rn, imm, size, type) \
74 aarch64_insn_gen_load_store_imm(Rt, R
[all...]
/linux-master/drivers/input/touchscreen/
H A Dresistive-adc-touch.c72 unsigned int Rt; local
75 Rt = z2;
76 Rt -= z1;
77 Rt *= st->x_plate_ohms;
78 Rt = DIV_ROUND_CLOSEST(Rt, 16);
79 Rt *= x;
80 Rt /= z1;
81 Rt = DIV_ROUND_CLOSEST(Rt, 25
[all...]
H A Dads7846.c824 unsigned int Rt; local
842 Rt = ts->pressure_max / 2;
845 Rt = z2;
846 Rt -= z1;
847 Rt *= ts->x_plate_ohms;
848 Rt = DIV_ROUND_CLOSEST(Rt, 16);
849 Rt *= x;
850 Rt /= z1;
851 Rt
[all...]
H A Dad7879.c132 int Rt; member in struct:ad7879
168 unsigned Rt; local
193 Rt = (z2 - z1) * x * ts->x_plate_ohms;
194 Rt /= z1;
195 Rt = (Rt + 2047) >> 12;
201 if (Rt > input_abs_get_max(input_dev, ABS_PRESSURE))
215 input_report_abs(input_dev, ABS_PRESSURE, ts->Rt);
221 ts->Rt = Rt;
[all...]
H A Dad7877.c322 unsigned Rt; local
342 Rt = (z2 - z1) * x * ts->x_plate_ohms;
343 Rt /= z1;
344 Rt = (Rt + 2047) >> 12;
350 if (Rt > ts->pressure_max)
358 input_report_abs(input_dev, ABS_PRESSURE, Rt);
/linux-master/arch/arm64/kvm/hyp/nvhe/
H A Dsys_regs.c479 int Rt = kvm_vcpu_sys_get_rt(vcpu); local
482 params.regval = vcpu_get_reg(vcpu, Rt);
501 vcpu_set_reg(vcpu, Rt, params.regval);
/linux-master/arch/arm64/kvm/
H A Dsys_regs.c3183 int Rt = kvm_vcpu_sys_get_rt(vcpu); local
3195 * Make a 64-bit value out of Rt and Rt2. As we use the same trap
3199 params.regval = vcpu_get_reg(vcpu, Rt) & 0xffffffff;
3211 vcpu_set_reg(vcpu, Rt, lower_32_bits(params.regval));
3279 int Rt = kvm_vcpu_sys_get_rt(vcpu); local
3290 vcpu_set_reg(vcpu, Rt, params.regval);
3315 int Rt = kvm_vcpu_sys_get_rt(vcpu); local
3335 vcpu_set_reg(vcpu, Rt, params->regval);
3351 int Rt = kvm_vcpu_sys_get_rt(vcpu); local
3353 params->regval = vcpu_get_reg(vcpu, Rt);
3568 int Rt = kvm_vcpu_sys_get_rt(vcpu); local
[all...]
/linux-master/tools/arch/arm64/include/asm/
H A Dsysreg.h88 * Rt = 0x1f
111 #define __SYS_BARRIER_INSN(CRm, op2, Rt) \
112 __emit_inst(0xd5000000 | sys_insn(0, 3, 3, (CRm), (op2)) | ((Rt) & 0x1f))
/linux-master/arch/arm64/include/asm/
H A Dsysreg.h89 * Rt = 0x1f
112 #define __SYS_BARRIER_INSN(CRm, op2, Rt) \
113 __emit_inst(0xd5000000 | sys_insn(0, 3, 3, (CRm), (op2)) | ((Rt) & 0x1f))

Completed in 159 milliseconds