| /kernel/linux/linux-5.10/net/netfilter/ |
| D | xt_RATEEST.c | 37 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 …]
|
| /kernel/linux/linux-6.6/net/netfilter/ |
| D | xt_RATEEST.c | 37 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 …]
|
| /kernel/linux/linux-6.6/arch/arm64/net/ |
| D | bpf_jit.h | 60 #define A64_STRB(Wt, Xn, Xm) A64_LS_REG(Wt, Xn, Xm, 8, STORE) argument 61 #define A64_LDRB(Wt, Xn, Xm) A64_LS_REG(Wt, Xn, Xm, 8, LOAD) argument 62 #define A64_LDRSB(Xt, Xn, Xm) A64_LS_REG(Xt, Xn, Xm, 8, SIGNED_LOAD) argument 63 #define A64_STRH(Wt, Xn, Xm) A64_LS_REG(Wt, Xn, Xm, 16, STORE) argument 64 #define A64_LDRH(Wt, Xn, Xm) A64_LS_REG(Wt, Xn, Xm, 16, LOAD) argument 65 #define A64_LDRSH(Xt, Xn, Xm) A64_LS_REG(Xt, Xn, Xm, 16, SIGNED_LOAD) argument 66 #define A64_STR32(Wt, Xn, Xm) A64_LS_REG(Wt, Xn, Xm, 32, STORE) argument 67 #define A64_LDR32(Wt, Xn, Xm) A64_LS_REG(Wt, Xn, Xm, 32, LOAD) argument 68 #define A64_LDRSW(Xt, Xn, Xm) A64_LS_REG(Xt, Xn, Xm, 32, SIGNED_LOAD) argument 69 #define A64_STR64(Xt, Xn, Xm) A64_LS_REG(Xt, Xn, Xm, 64, STORE) argument [all …]
|
| /kernel/linux/linux-6.6/arch/arm64/kernel/probes/ |
| D | simulate-insn.c | 54 int xn = opcode & 0x1f; in check_cbz() local 57 (get_x_reg(regs, xn) == 0) : (get_w_reg(regs, xn) == 0); in check_cbz() 62 int xn = opcode & 0x1f; in check_cbnz() local 65 (get_x_reg(regs, xn) != 0) : (get_w_reg(regs, xn) != 0); in check_cbnz() 70 int xn = opcode & 0x1f; in check_tbz() local 73 return ((get_x_reg(regs, xn) >> bit_pos) & 0x1) == 0; in check_tbz() 78 int xn = opcode & 0x1f; in check_tbnz() local 81 return ((get_x_reg(regs, xn) >> bit_pos) & 0x1) != 0; in check_tbnz() 90 long imm, xn, val; in simulate_adr_adrp() local 92 xn = opcode & 0x1f; in simulate_adr_adrp() [all …]
|
| /kernel/linux/linux-5.10/arch/arm64/kernel/probes/ |
| D | simulate-insn.c | 53 int xn = opcode & 0x1f; in check_cbz() local 56 (get_x_reg(regs, xn) == 0) : (get_w_reg(regs, xn) == 0); in check_cbz() 61 int xn = opcode & 0x1f; in check_cbnz() local 64 (get_x_reg(regs, xn) != 0) : (get_w_reg(regs, xn) != 0); in check_cbnz() 69 int xn = opcode & 0x1f; in check_tbz() local 72 return ((get_x_reg(regs, xn) >> bit_pos) & 0x1) == 0; in check_tbz() 77 int xn = opcode & 0x1f; in check_tbnz() local 80 return ((get_x_reg(regs, xn) >> bit_pos) & 0x1) != 0; in check_tbnz() 89 long imm, xn, val; in simulate_adr_adrp() local 91 xn = opcode & 0x1f; in simulate_adr_adrp() [all …]
|
| /kernel/linux/linux-6.6/tools/testing/selftests/arm64/fp/ |
| D | sve-test.S | 24 .macro _sve_ldr_v zt, xn argument 25 ldr z\zt, [x\xn] 28 .macro _sve_str_v zt, xn argument 29 str z\zt, [x\xn] 32 .macro _sve_ldr_p pt, xn argument 33 ldr p\pt, [x\xn] 36 .macro _sve_str_p pt, xn argument 37 str p\pt, [x\xn] 91 // Get the address of shadow data for SVE Z-register Z<xn> 92 .macro _adrz xd, xn, nrtmp [all …]
|
| D | fpsimd-test.S | 65 // Get the address of shadow data for FPSIMD V-register V<xn> 66 .macro _adrv xd, xn, nrtmp 69 madd \xd, x\nrtmp, \xn, \xd
|
| D | za-test.S | 75 // Get the address of shadow data for ZA horizontal vector xn 76 .macro _adrza xd, xn, nrtmp 79 madd \xd, x\nrtmp, \xn, \xd
|
| /kernel/linux/linux-5.10/arch/arm64/net/ |
| D | bpf_jit.h | 60 #define A64_STRB(Wt, Xn, Xm) A64_LS_REG(Wt, Xn, Xm, 8, STORE) argument 61 #define A64_LDRB(Wt, Xn, Xm) A64_LS_REG(Wt, Xn, Xm, 8, LOAD) argument 62 #define A64_STRH(Wt, Xn, Xm) A64_LS_REG(Wt, Xn, Xm, 16, STORE) argument 63 #define A64_LDRH(Wt, Xn, Xm) A64_LS_REG(Wt, Xn, Xm, 16, LOAD) argument 64 #define A64_STR32(Wt, Xn, Xm) A64_LS_REG(Wt, Xn, Xm, 32, STORE) argument 65 #define A64_LDR32(Wt, Xn, Xm) A64_LS_REG(Wt, Xn, Xm, 32, LOAD) argument 66 #define A64_STR64(Xt, Xn, Xm) A64_LS_REG(Xt, Xn, Xm, 64, STORE) argument 67 #define A64_LDR64(Xt, Xn, Xm) A64_LS_REG(Xt, Xn, Xm, 64, LOAD) argument
|
| /kernel/linux/linux-5.10/tools/testing/selftests/arm64/fp/ |
| D | sve-test.S | 23 .macro _sve_ldr_v zt, xn argument 24 ldr z\zt, [x\xn] 27 .macro _sve_str_v zt, xn argument 28 str z\zt, [x\xn] 31 .macro _sve_ldr_p pt, xn argument 32 ldr p\pt, [x\xn] 35 .macro _sve_str_p pt, xn argument 36 str p\pt, [x\xn] 226 // Get the address of shadow data for SVE Z-register Z<xn> 227 .macro _adrz xd, xn, nrtmp [all …]
|
| D | fpsimd-test.S | 202 // Get the address of shadow data for FPSIMD V-register V<xn> 203 .macro _adrv xd, xn, nrtmp 206 madd \xd, x\nrtmp, \xn, \xd
|
| /kernel/linux/linux-6.6/drivers/net/wireless/admtek/ |
| D | Kconfig | 24 Xterasys Cardbus XN-2411b 37 like the RTL8180L (Xterasys Cardbus XN-2411b, Belkin F5D6001) or
|
| /kernel/linux/linux-5.10/drivers/net/wireless/admtek/ |
| D | Kconfig | 24 Xterasys Cardbus XN-2411b 37 like the RTL8180L (Xterasys Cardbus XN-2411b, Belkin F5D6001) or
|
| /kernel/linux/linux-5.10/drivers/clk/pxa/ |
| D | clk-pxa3xx.c | 242 unsigned int xn = (acsr & ACCR_XN_MASK) >> 8; in clk_pxa3xx_run_get_rate() local 249 return t ? (parent_rate / xn) * 2 : parent_rate; in clk_pxa3xx_run_get_rate() 258 unsigned int xn = (acsr & ACCR_XN_MASK) >> 8; in clk_pxa3xx_cpll_get_rate() local 266 pr_info("RJK: parent_rate=%lu, xl=%u, xn=%u\n", parent_rate, xl, xn); in clk_pxa3xx_cpll_get_rate() 267 return t ? parent_rate * xl * xn : parent_rate * xl; in clk_pxa3xx_cpll_get_rate()
|
| /kernel/linux/linux-5.10/Documentation/devicetree/bindings/iio/adc/ |
| D | fsl,imx25-gcq.yaml | 69 2: xn 96 0: XN ground reference
|
| /kernel/linux/linux-6.6/Documentation/devicetree/bindings/iio/adc/ |
| D | fsl,imx25-gcq.yaml | 69 2: xn 96 0: XN ground reference
|
| /kernel/linux/linux-6.6/drivers/clk/pxa/ |
| D | clk-pxa3xx.c | 336 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()
|
| /kernel/linux/linux-6.6/arch/powerpc/platforms/8xx/ |
| D | Kconfig | 33 bool "Embedded Planet EP88xC (a.k.a. CWH-PPC-885XN-VE)" 39 MPC885 Evaluation System and/or the CWH-PPC-885XN-VE.
|
| /kernel/linux/linux-5.10/arch/powerpc/platforms/8xx/ |
| D | Kconfig | 33 bool "Embedded Planet EP88xC (a.k.a. CWH-PPC-885XN-VE)" 39 MPC885 Evaluation System and/or the CWH-PPC-885XN-VE.
|
| /kernel/linux/linux-5.10/include/linux/input/ |
| D | as5011.h | 13 char xp, xn; /* threshold for x axis */ member
|
| /kernel/linux/linux-6.6/include/linux/input/ |
| D | as5011.h | 13 char xp, xn; /* threshold for x axis */ member
|
| /kernel/linux/linux-5.10/include/dt-bindings/iio/adc/ |
| D | fsl-imx25-gcq.h | 14 #define MX25_ADC_REFN_XN 0 /* XN ground reference */
|
| /kernel/linux/linux-6.6/include/dt-bindings/iio/adc/ |
| D | fsl-imx25-gcq.h | 14 #define MX25_ADC_REFN_XN 0 /* XN ground reference */
|
| /kernel/linux/linux-6.6/drivers/iommu/ |
| D | io-pgtable-arm-v7s.c | 78 /* PTE type bits: these are all mixed up with XN/PXN bits in most cases */ 390 arm_v7s_iopte xn = pte & ARM_V7S_ATTR_XN(lvl); in arm_v7s_pte_to_cont() local 393 pte ^= xn | tex | ARM_V7S_PTE_TYPE_PAGE; in arm_v7s_pte_to_cont() 394 pte |= (xn << ARM_V7S_CONT_PAGE_XN_SHIFT) | in arm_v7s_pte_to_cont() 406 arm_v7s_iopte xn = pte & BIT(ARM_V7S_CONT_PAGE_XN_SHIFT); in arm_v7s_cont_to_pte() local 410 pte ^= xn | tex | ARM_V7S_PTE_TYPE_CONT_PAGE; in arm_v7s_cont_to_pte() 411 pte |= (xn >> ARM_V7S_CONT_PAGE_XN_SHIFT) | in arm_v7s_cont_to_pte()
|
| /kernel/linux/linux-5.10/drivers/iommu/ |
| D | io-pgtable-arm-v7s.c | 79 /* PTE type bits: these are all mixed up with XN/PXN bits in most cases */ 373 arm_v7s_iopte xn = pte & ARM_V7S_ATTR_XN(lvl); in arm_v7s_pte_to_cont() local 376 pte ^= xn | tex | ARM_V7S_PTE_TYPE_PAGE; in arm_v7s_pte_to_cont() 377 pte |= (xn << ARM_V7S_CONT_PAGE_XN_SHIFT) | in arm_v7s_pte_to_cont() 389 arm_v7s_iopte xn = pte & BIT(ARM_V7S_CONT_PAGE_XN_SHIFT); in arm_v7s_cont_to_pte() local 393 pte ^= xn | tex | ARM_V7S_PTE_TYPE_CONT_PAGE; in arm_v7s_cont_to_pte() 394 pte |= (xn >> ARM_V7S_CONT_PAGE_XN_SHIFT) | in arm_v7s_cont_to_pte()
|