Home
last modified time | relevance | path

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

/Linux-v4.19/net/netfilter/
Dxt_RATEEST.c40 static void xt_rateest_hash_insert(struct xt_rateest_net *xn, in xt_rateest_hash_insert() argument
46 hlist_add_head(&est->list, &xn->hash[h]); in xt_rateest_hash_insert()
49 static struct xt_rateest *__xt_rateest_lookup(struct xt_rateest_net *xn, in __xt_rateest_lookup() argument
56 hlist_for_each_entry(est, &xn->hash[h], list) { in __xt_rateest_lookup()
68 struct xt_rateest_net *xn = net_generic(net, xt_rateest_id); in xt_rateest_lookup() local
71 mutex_lock(&xn->hash_lock); in xt_rateest_lookup()
72 est = __xt_rateest_lookup(xn, name); in xt_rateest_lookup()
73 mutex_unlock(&xn->hash_lock); in xt_rateest_lookup()
80 struct xt_rateest_net *xn = net_generic(net, xt_rateest_id); in xt_rateest_put() local
82 mutex_lock(&xn->hash_lock); in xt_rateest_put()
[all …]
/Linux-v4.19/arch/arm64/kernel/probes/
Dsimulate-insn.c61 int xn = opcode & 0x1f; in check_cbz() local
64 (get_x_reg(regs, xn) == 0) : (get_w_reg(regs, xn) == 0); in check_cbz()
69 int xn = opcode & 0x1f; in check_cbnz() local
72 (get_x_reg(regs, xn) != 0) : (get_w_reg(regs, xn) != 0); in check_cbnz()
77 int xn = opcode & 0x1f; in check_tbz() local
80 return ((get_x_reg(regs, xn) >> bit_pos) & 0x1) == 0; in check_tbz()
85 int xn = opcode & 0x1f; in check_tbnz() local
88 return ((get_x_reg(regs, xn) >> bit_pos) & 0x1) != 0; in check_tbnz()
97 long imm, xn, val; in simulate_adr_adrp() local
99 xn = opcode & 0x1f; in simulate_adr_adrp()
[all …]
/Linux-v4.19/drivers/clk/pxa/
Dclk-pxa3xx.c245 unsigned int xn = (acsr & ACCR_XN_MASK) >> 8; in clk_pxa3xx_run_get_rate() local
252 return t ? (parent_rate / xn) * 2 : parent_rate; in clk_pxa3xx_run_get_rate()
261 unsigned int xn = (acsr & ACCR_XN_MASK) >> 8; in clk_pxa3xx_cpll_get_rate() local
269 pr_info("RJK: parent_rate=%lu, xl=%u, xn=%u\n", parent_rate, xl, xn); in clk_pxa3xx_cpll_get_rate()
270 return t ? parent_rate * xl * xn : parent_rate * xl; in clk_pxa3xx_cpll_get_rate()
/Linux-v4.19/include/linux/input/
Das5011.h16 char xp, xn; /* threshold for x axis */ member
/Linux-v4.19/drivers/iommu/
Dio-pgtable-arm-v7s.c328 arm_v7s_iopte xn = pte & ARM_V7S_ATTR_XN(lvl); in arm_v7s_pte_to_cont() local
331 pte ^= xn | tex | ARM_V7S_PTE_TYPE_PAGE; in arm_v7s_pte_to_cont()
332 pte |= (xn << ARM_V7S_CONT_PAGE_XN_SHIFT) | in arm_v7s_pte_to_cont()
344 arm_v7s_iopte xn = pte & BIT(ARM_V7S_CONT_PAGE_XN_SHIFT); in arm_v7s_cont_to_pte() local
348 pte ^= xn | tex | ARM_V7S_PTE_TYPE_CONT_PAGE; in arm_v7s_cont_to_pte()
349 pte |= (xn >> ARM_V7S_CONT_PAGE_XN_SHIFT) | in arm_v7s_cont_to_pte()
/Linux-v4.19/sound/pci/
Dsonicvibes.c488 unsigned int xm, xn, xr, xd, metric = ~0U; in snd_sonicvibes_pll() local
496 for (xn = 3; xn < 33; xn++) /* 35 */ in snd_sonicvibes_pll()
498 xr = ((SV_REFFREQUENCY / SV_ADCMULT) * xm) / xn; in snd_sonicvibes_pll()
506 n = xn - 2; in snd_sonicvibes_pll()
514 "metric = %i, xm = %i, xn = %i\n", metric, xm, xn); in snd_sonicvibes_pll()
Dcmipci.c625 int xm, xn, xr; in snd_cmipci_pll_rmn() local
634 for (xn = (1+2); xn < (0x1f+2); xn++) { in snd_cmipci_pll_rmn()
636 xr = ((CM_REFFREQ_XIN/adcmult) * xm) / xn; in snd_cmipci_pll_rmn()
650 *n = xn - 2; in snd_cmipci_pll_rmn()
/Linux-v4.19/Documentation/devicetree/bindings/iio/adc/
Dfsl,imx25-gcq.txt30 2: xn
/Linux-v4.19/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-v4.19/drivers/input/joystick/
Das5011.c200 error = as5011_i2c_write(client, AS5011_XN, plat_dat->xn); in as5011_configure_chip()