Home
last modified time | relevance | path

Searched full:xn (Results 1 – 25 of 48) sorted by relevance

12

/linux/arch/arm64/kernel/probes/
H A Dsimulate-insn.c70 int xn = opcode & 0x1f; in check_cbz() local
73 (get_x_reg(regs, xn) == 0) : (get_w_reg(regs, xn) == 0); in check_cbz()
78 int xn = opcode & 0x1f; in check_cbnz() local
81 (get_x_reg(regs, xn) != 0) : (get_w_reg(regs, xn) != 0); in check_cbnz()
86 int xn = opcode & 0x1f; in check_tbz() local
89 return ((get_x_reg(regs, xn) >> bit_pos) & 0x1) == 0; in check_tbz()
94 int xn = opcode & 0x1f; in check_tbnz() local
97 return ((get_x_reg(regs, xn) >> bit_pos) & 0x1) != 0; in check_tbnz()
106 long imm, xn, val; in simulate_adr_adrp() local
108 xn = opcode & 0x1f; in simulate_adr_adrp()
[all …]
/linux/net/netfilter/
H A Dxt_RATEEST.c37 static void xt_rateest_hash_insert(struct xt_rateest_net *xn, in xt_rateest_hash_insert() argument
43 hlist_add_head(&est->list, &xn->hash[h]); in xt_rateest_hash_insert()
46 static struct xt_rateest *__xt_rateest_lookup(struct xt_rateest_net *xn, in __xt_rateest_lookup() argument
53 hlist_for_each_entry(est, &xn->hash[h], list) { in __xt_rateest_lookup()
65 struct xt_rateest_net *xn = net_generic(net, xt_rateest_id); in xt_rateest_lookup() local
68 mutex_lock(&xn->hash_lock); in xt_rateest_lookup()
69 est = __xt_rateest_lookup(xn, name); in xt_rateest_lookup()
70 mutex_unlock(&xn->hash_lock); in xt_rateest_lookup()
77 struct xt_rateest_net *xn = net_generic(net, xt_rateest_id); in xt_rateest_put() local
79 mutex_lock(&xn->hash_lock); in xt_rateest_put()
[all …]
/linux/drivers/net/ethernet/intel/idpf/
H A Didpf_virtchnl.c290 /* API for virtchnl "transaction" support ("xn" for short). */
294 * @xn: struct idpf_vc_xn* to access
296 #define idpf_vc_xn_lock(xn) \ argument
297 spin_lock(&(xn)->lock)
301 * @xn: struct idpf_vc_xn* to access
303 #define idpf_vc_xn_unlock(xn) \ argument
304 spin_unlock(&(xn)->lock)
309 * @xn: struct idpf_vc_xn to update
311 static void idpf_vc_xn_release_bufs(struct idpf_vc_xn *xn) in idpf_vc_xn_release_bufs() argument
313 xn->reply.iov_base = NULL; in idpf_vc_xn_release_bufs()
[all …]
H A Didpf_virtchnl_ptp.c534 * @xn: transaction for message
545 struct idpf_vc_xn *xn, in idpf_ptp_get_tx_tstamp_async_handler() argument
/linux/arch/arm64/include/asm/
H A Dkvm_nested.h132 u8 xn = FIELD_GET(KVM_PTE_LEAF_ATTR_HI_S2_XN, trans->desc); in kvm_s2_trans_exec_el0() local
135 xn &= FIELD_PREP(KVM_PTE_LEAF_ATTR_HI_S2_XN, 0b10); in kvm_s2_trans_exec_el0()
137 switch (xn) { in kvm_s2_trans_exec_el0()
148 u8 xn = FIELD_GET(KVM_PTE_LEAF_ATTR_HI_S2_XN, trans->desc); in kvm_s2_trans_exec_el1() local
151 xn &= FIELD_PREP(KVM_PTE_LEAF_ATTR_HI_S2_XN, 0b10); in kvm_s2_trans_exec_el1()
153 switch (xn) { in kvm_s2_trans_exec_el1()
/linux/drivers/net/wireless/admtek/
H A DKconfig24 Xterasys Cardbus XN-2411b
37 like the RTL8180L (Xterasys Cardbus XN-2411b, Belkin F5D6001) or
/linux/drivers/clk/pxa/
H A Dclk-pxa3xx.c336 unsigned int xn = (acsr & ACCR_XN_MASK) >> 8; in clk_pxa3xx_run_get_rate() local
343 return t ? (parent_rate / xn) * 2 : parent_rate; in clk_pxa3xx_run_get_rate()
352 unsigned int xn = (acsr & ACCR_XN_MASK) >> 8; in clk_pxa3xx_cpll_get_rate() local
360 pr_info("RJK: parent_rate=%lu, xl=%u, xn=%u\n", parent_rate, xl, xn); in clk_pxa3xx_cpll_get_rate()
361 return t ? parent_rate * xl * xn : parent_rate * xl; in clk_pxa3xx_cpll_get_rate()
/linux/Documentation/devicetree/bindings/iio/adc/
H A Dfsl,imx25-gcq.yaml69 2: xn
96 0: XN ground reference
/linux/arch/powerpc/platforms/8xx/
H A DKconfig33 bool "Embedded Planet EP88xC (a.k.a. CWH-PPC-885XN-VE)"
39 MPC885 Evaluation System and/or the CWH-PPC-885XN-VE.
/linux/arch/arm64/kvm/hyp/
H A Dpgtable.c680 u8 xn; in stage2_set_xn_attr() local
689 xn = 0b00; in stage2_set_xn_attr()
691 xn = 0b01; in stage2_set_xn_attr()
693 xn = 0b10; in stage2_set_xn_attr()
695 xn = 0b11; in stage2_set_xn_attr()
698 *attr |= FIELD_PREP(KVM_PTE_LEAF_ATTR_HI_S2_XN, xn); in stage2_set_xn_attr()
1358 kvm_pte_t xn = 0, set = 0, clr = 0; in kvm_pgtable_stage2_relax_perms() local
1371 ret = stage2_set_xn_attr(prot, &xn); in kvm_pgtable_stage2_relax_perms()
1375 set |= xn & KVM_PTE_LEAF_ATTR_HI_S2_XN; in kvm_pgtable_stage2_relax_perms()
1376 clr |= ~xn & KVM_PTE_LEAF_ATTR_HI_S2_XN; in kvm_pgtable_stage2_relax_perms()
/linux/include/linux/input/
H A Das5011.h12 char xp, xn; /* threshold for x axis */ member
/linux/include/dt-bindings/iio/adc/
H A Dfsl-imx25-gcq.h14 #define MX25_ADC_REFN_XN 0 /* XN ground reference */
/linux/drivers/cpufreq/
H A Dpxa3xx-cpufreq.c87 /* CPU XL XN HSS DMEM SMEM SRAM DFI VCC_CORE VCC_SRAM */
95 /* CPU XL XN HSS DMEM SMEM SRAM DFI VCC_CORE VCC_SRAM */
/linux/arch/riscv/kernel/
H A Defi.c16 * executable, everything else can be mapped with the XN bits
/linux/Documentation/devicetree/bindings/input/touchscreen/
H A Dti,am3359-tsc.yaml42 and so on until AIN7 = 7. XP = 0, XN = 1, YP = 2, YN = 3.
/linux/drivers/iommu/
H A Dio-pgtable-arm-v7s.c78 /* PTE type bits: these are all mixed up with XN/PXN bits in most cases */
370 arm_v7s_iopte xn = pte & ARM_V7S_ATTR_XN(lvl); in arm_v7s_pte_to_cont() local
373 pte ^= xn | tex | ARM_V7S_PTE_TYPE_PAGE; in arm_v7s_pte_to_cont()
374 pte |= (xn << ARM_V7S_CONT_PAGE_XN_SHIFT) | in arm_v7s_pte_to_cont()
/linux/tools/perf/pmu-events/arch/arm64/arm/neoverse-n1/
H A Dspec_operation.json80 …hat force a software change of the PC, other than exception-generating operations. Eg: BR Xn, RET"
/linux/tools/perf/pmu-events/arch/arm64/arm/neoverse-v1/
H A Dspec_operation.json84 …hat force a software change of the PC, other than exception-generating operations. Eg: BR Xn, RET"
/linux/arch/arm/kernel/
H A Dvmlinux-xip.lds.S190 * from background region which is XN.
/linux/arch/arm64/kvm/
H A Dpauth.c21 /* PACGA Xd, Xn, Xm */
/linux/drivers/media/radio/si4713/
H A Dsi4713.h172 * However, there is receivers which scroll PSNAME 8xN sized.
/linux/arch/arm/include/asm/
H A Dpgtable-3level-hwdef.h70 #define PTE_EXT_XN (_AT(pteval_t, 1) << 54) /* XN */
/linux/tools/power/pm-graph/
H A DREADME219 suspend-xN-{date}-{time}:
244 created in a new subdirectory: suspend-xN-{date}-{time}. When the multitest
295 %> cd suspend-xN-{date}-{time}
/linux/lib/crypto/x86/
H A Dpoly1305.h33 * anyway. Z3 proof of below function: https://xn--4db.cc/ltPtHCKN/py
/linux/arch/arm/boot/compressed/
H A Dhead.S804 mov r1, #0x12 @ XN|U + section mapping
809 bic r1, r1, #0x1c @ clear XN|U + C + B
810 orrlo r1, r1, #0x10 @ Set XN|U for non-RAM
873 movne r6, #CB_BITS | 0x02 @ !XN

12