Home
last modified time | relevance | path

Searched refs:xn (Results 1 – 10 of 10) sorted by relevance

/Linux-v5.4/net/netfilter/
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-v5.4/arch/arm64/kernel/probes/
Dsimulate-insn.c53 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 …]
/Linux-v5.4/drivers/clk/pxa/
Dclk-pxa3xx.c242 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()
/Linux-v5.4/include/linux/input/
Das5011.h13 char xp, xn; /* threshold for x axis */ member
/Linux-v5.4/drivers/iommu/
Dio-pgtable-arm-v7s.c371 arm_v7s_iopte xn = pte & ARM_V7S_ATTR_XN(lvl); in arm_v7s_pte_to_cont() local
374 pte ^= xn | tex | ARM_V7S_PTE_TYPE_PAGE; in arm_v7s_pte_to_cont()
375 pte |= (xn << ARM_V7S_CONT_PAGE_XN_SHIFT) | in arm_v7s_pte_to_cont()
387 arm_v7s_iopte xn = pte & BIT(ARM_V7S_CONT_PAGE_XN_SHIFT); in arm_v7s_cont_to_pte() local
391 pte ^= xn | tex | ARM_V7S_PTE_TYPE_CONT_PAGE; in arm_v7s_cont_to_pte()
392 pte |= (xn >> ARM_V7S_CONT_PAGE_XN_SHIFT) | in arm_v7s_cont_to_pte()
/Linux-v5.4/sound/pci/
Dsonicvibes.c474 unsigned int xm, xn, xr, xd, metric = ~0U; in snd_sonicvibes_pll() local
482 for (xn = 3; xn < 33; xn++) /* 35 */ in snd_sonicvibes_pll()
484 xr = ((SV_REFFREQUENCY / SV_ADCMULT) * xm) / xn; in snd_sonicvibes_pll()
492 n = xn - 2; in snd_sonicvibes_pll()
500 "metric = %i, xm = %i, xn = %i\n", metric, xm, xn); in snd_sonicvibes_pll()
Dcmipci.c612 int xm, xn, xr; in snd_cmipci_pll_rmn() local
621 for (xn = (1+2); xn < (0x1f+2); xn++) { in snd_cmipci_pll_rmn()
623 xr = ((CM_REFFREQ_XIN/adcmult) * xm) / xn; in snd_cmipci_pll_rmn()
637 *n = xn - 2; in snd_cmipci_pll_rmn()
/Linux-v5.4/Documentation/devicetree/bindings/iio/adc/
Dfsl,imx25-gcq.txt30 2: xn
/Linux-v5.4/drivers/block/paride/
Dpt.c518 static int xn(char *buf, int offs, int size) in xn() function
565 tape->bs = xn(buf, 10, 2); in pt_identify()
569 tape->capacity = xn(buf, 24, 4); in pt_identify()
/Linux-v5.4/drivers/input/joystick/
Das5011.c187 error = as5011_i2c_write(client, AS5011_XN, plat_dat->xn); in as5011_configure_chip()