/linux-5.19.10/arch/alpha/lib/ |
D | udiv-qrnnd.S | 45 #define n0 $18 macro 53 $loop1: cmplt n0,0,tmp 56 addq n0,n0,n0 60 bis n0,qb,n0 61 cmplt n0,0,tmp 64 addq n0,n0,n0 68 bis n0,qb,n0 69 cmplt n0,0,tmp 72 addq n0,n0,n0 76 bis n0,qb,n0 [all …]
|
/linux-5.19.10/arch/powerpc/math-emu/ |
D | udivmodti4.c | 11 _FP_W_TYPE n1, _FP_W_TYPE n0, in _fp_udivmodti4() argument 24 udiv_qrnnd (q0, n0, n1, n0, d0); in _fp_udivmodti4() 37 udiv_qrnnd (q0, n0, n1, n0, d0); in _fp_udivmodti4() 42 r0 = n0; in _fp_udivmodti4() 59 n1 = (n1 << bm) | (n0 >> (_FP_W_TYPE_SIZE - bm)); in _fp_udivmodti4() 60 n0 = n0 << bm; in _fp_udivmodti4() 63 udiv_qrnnd (q0, n0, n1, n0, d0); in _fp_udivmodti4() 99 n1 = (n1 << bm) | (n0 >> b); in _fp_udivmodti4() 100 n0 = n0 << bm; in _fp_udivmodti4() 107 udiv_qrnnd (q0, n0, n1, n0, d0); in _fp_udivmodti4() [all …]
|
/linux-5.19.10/lib/mpi/ |
D | mpih-div.c | 33 mpi_limb_t n1, n0, r; in mpihelp_mod_1() local 80 n0 = dividend_ptr[i]; in mpihelp_mod_1() 83 | (n0 >> (BITS_PER_MPI_LIMB - normalization_steps))), in mpihelp_mod_1() 85 n1 = n0; in mpihelp_mod_1() 115 n0 = dividend_ptr[i]; in mpihelp_mod_1() 117 n0, divisor_limb, divisor_limb_inverted); in mpihelp_mod_1() 139 n0 = dividend_ptr[i]; in mpihelp_mod_1() 142 | (n0 >> (BITS_PER_MPI_LIMB - normalization_steps))), in mpihelp_mod_1() 144 n1 = n0; in mpihelp_mod_1() 164 n0 = dividend_ptr[i]; in mpihelp_mod_1() [all …]
|
D | longlong.h | 144 #define udiv_qrnnd(q, r, n1, n0, d) \ argument 149 "r" ((USItype)(n0)), \ 162 #define udiv_qrnnd(q, r, n1, n0, d) \ argument 164 (q) = __udiv_qrnnd(&__r, (n1), (n0), (d)); \ 339 #define udiv_qrnnd(q, r, n1, n0, d) \ 341 (q) = __udiv_qrnnd(&__r, (n1), (n0), (d)); \ 379 #define sdiv_qrnnd(q, r, n1, n0, d) \ argument 384 __xx.__i.__h = n1; __xx.__i.__l = n0; \ 421 #define udiv_qrnnd(q, r, n1, n0, d) \ argument 425 : "0" ((USItype)(n0)), \ [all …]
|
/linux-5.19.10/tools/testing/selftests/wireguard/ |
D | netns.sh | 37 n0() { pretty 0 "$*"; maybe_exec ip netns exec $netns0 "$@"; } function 199 n0 iptables -A INPUT -m length --length 1360 -j DROP 205 n0 iptables -F INPUT 275 n0 ping -W 1 -c 1 192.168.241.2 279 read _ _ tx_bytes_before < <(n0 wg show wg1 transfer) 280 ! n0 ping -W 1 -c 10 -f 192.168.241.2 || false 282 read _ _ tx_bytes_after < <(n0 wg show wg1 transfer) 334 n0 bash -c 'printf 1 > /proc/sys/net/ipv4/ip_forward' 335 n0 bash -c 'printf 2 > /proc/sys/net/netfilter/nf_conntrack_udp_timeout' 336 n0 bash -c 'printf 2 > /proc/sys/net/netfilter/nf_conntrack_udp_timeout_stream' [all …]
|
/linux-5.19.10/lib/math/ |
D | rational.c | 51 unsigned long n, d, n0, d0, n1, d1, n2, d2; in rational_best_approximation() local 54 n0 = d1 = 0; in rational_best_approximation() 74 n2 = n0 + a * n1; in rational_best_approximation() 88 t = min(t, (max_numerator - n0) / n1); in rational_best_approximation() 95 n1 = n0 + t * n1; in rational_best_approximation() 100 n0 = n1; in rational_best_approximation()
|
/linux-5.19.10/arch/mips/ralink/ |
D | rt305x.c | 147 u32 n0; in prom_soc_init() local 151 n0 = __raw_readl(sysc + SYSC_REG_CHIP_NAME0); in prom_soc_init() 154 if (n0 == RT3052_CHIP_NAME0 && n1 == RT3052_CHIP_NAME1) { in prom_soc_init() 167 } else if (n0 == RT3350_CHIP_NAME0 && n1 == RT3350_CHIP_NAME1) { in prom_soc_init() 171 } else if (n0 == RT3352_CHIP_NAME0 && n1 == RT3352_CHIP_NAME1) { in prom_soc_init() 175 } else if (n0 == RT5350_CHIP_NAME0 && n1 == RT5350_CHIP_NAME1) { in prom_soc_init() 180 panic("rt305x: unknown SoC, n0:%08x n1:%08x", n0, n1); in prom_soc_init()
|
D | rt288x.c | 64 u32 n0; in prom_soc_init() local 68 n0 = __raw_readl(sysc + SYSC_REG_CHIP_NAME0); in prom_soc_init() 72 if (n0 == RT2880_CHIP_NAME0 && n1 == RT2880_CHIP_NAME1) { in prom_soc_init() 76 panic("rt288x: unknown SoC, n0:%08x n1:%08x", n0, n1); in prom_soc_init()
|
D | rt3883.c | 77 u32 n0; in prom_soc_init() local 81 n0 = __raw_readl(sysc + RT3883_SYSC_REG_CHIPID0_3); in prom_soc_init() 85 if (n0 == RT3883_CHIP_NAME0 && n1 == RT3883_CHIP_NAME1) { in prom_soc_init() 89 panic("rt3883: unknown SoC, n0:%08x n1:%08x", n0, n1); in prom_soc_init()
|
D | mt7621.c | 131 u32 n0; in prom_soc_init() local 157 n0 = __raw_readl(sysc + SYSC_REG_CHIP_NAME0); in prom_soc_init() 160 if (n0 == MT7621_CHIP_NAME0 && n1 == MT7621_CHIP_NAME1) { in prom_soc_init() 164 panic("mt7621: unknown SoC, n0:%08x n1:%08x\n", n0, n1); in prom_soc_init()
|
D | mt7620.c | 331 u32 n0; in prom_soc_init() local 339 n0 = __raw_readl(sysc + SYSC_REG_CHIP_NAME0); in prom_soc_init() 344 if (n0 == MT7620_CHIP_NAME0 && n1 == MT7620_CHIP_NAME1) { in prom_soc_init() 354 } else if (n0 == MT7620_CHIP_NAME0 && n1 == MT7628_CHIP_NAME1) { in prom_soc_init() 366 panic("mt762x: unknown SoC, n0:%08x n1:%08x\n", n0, n1); in prom_soc_init()
|
/linux-5.19.10/arch/sparc/math-emu/ |
D | sfp-util_64.h | 76 #define udiv_qrnnd(q, r, n1, n0, d) \ argument 85 __r1 = (__r1 << 32) | (n0 >> 32); \ 98 __r0 = (__r0 << 32) | ((USItype)n0); \
|
D | sfp-util_32.h | 77 #define udiv_qrnnd(q, r, n1, n0, d) \ argument 106 "0" ((USItype)(n0)) : "%g1", "cc")
|
/linux-5.19.10/arch/sh/math-emu/ |
D | sfp-util.h | 32 #define udiv_qrnnd(q, r, n1, n0, d) \ argument 42 __r1 = __r1 * __ll_B | __ll_highpart (n0); \ 55 __r0 = __r0 * __ll_B | __ll_lowpart (n0); \
|
/linux-5.19.10/arch/alpha/math-emu/ |
D | sfp-util.h | 21 #define udiv_qrnnd(q, r, n1, n0, d) \ argument 23 (q) = __udiv_qrnnd (&__r, (n1), (n0), (d)); \
|
/linux-5.19.10/arch/alpha/kernel/ |
D | perf_event.c | 437 int n0; in alpha_pmu_add() local 456 n0 = cpuc->n_events; in alpha_pmu_add() 457 if (n0 < alpha_pmu->num_pmcs) { in alpha_pmu_add() 458 cpuc->event[n0] = event; in alpha_pmu_add() 459 cpuc->evtype[n0] = event->hw.event_base; in alpha_pmu_add() 460 cpuc->current_idx[n0] = PMC_NO_INDEX; in alpha_pmu_add() 462 if (!alpha_check_constraints(cpuc->event, cpuc->evtype, n0+1)) { in alpha_pmu_add()
|
/linux-5.19.10/arch/powerpc/include/asm/ |
D | sfp-machine.h | 280 #define udiv_qrnnd(q, r, n1, n0, d) \ argument 290 __r1 = __r1 * __ll_B | __ll_highpart (n0); \ 303 __r0 = __r0 * __ll_B | __ll_lowpart (n0); \
|
/linux-5.19.10/Documentation/input/devices/ |
D | elantech.rst | 269 w h n1 n0 ds3 ds2 ds1 ds0 280 n1..n0 = number of fingers on touchpad 318 n1 n0 p2 p1 1 p3 R L 322 n1..n0 = number of fingers on touchpad 431 n1 n0 w3 w2 . . R L 434 n1..n0 = number of fingers on touchpad 493 n1 n0 ay8 ax8 . . R L 496 n1..n0 = number of fingers on touchpad 576 n1 n0 w3 w2 0 1 R L 579 n1..n0 = number of fingers on touchpad
|
/linux-5.19.10/arch/sparc/kernel/ |
D | perf_event.c | 1375 int n0, ret = -EAGAIN; in sparc_pmu_add() local 1380 n0 = cpuc->n_events; in sparc_pmu_add() 1381 if (n0 >= sparc_pmu->max_hw_events) in sparc_pmu_add() 1384 cpuc->event[n0] = event; in sparc_pmu_add() 1385 cpuc->events[n0] = event->hw.event_base; in sparc_pmu_add() 1386 cpuc->current_idx[n0] = PIC_NO_INDEX; in sparc_pmu_add() 1400 if (check_excludes(cpuc->event, n0, 1)) in sparc_pmu_add() 1402 if (sparc_check_constraints(cpuc->event, cpuc->events, n0 + 1)) in sparc_pmu_add()
|
/linux-5.19.10/arch/powerpc/perf/ |
D | core-book3s.c | 1631 int n0; in power_pmu_add() local 1642 n0 = cpuhw->n_events; in power_pmu_add() 1643 if (n0 >= ppmu->n_counter) in power_pmu_add() 1645 cpuhw->event[n0] = event; in power_pmu_add() 1646 cpuhw->events[n0] = event->hw.config; in power_pmu_add() 1647 cpuhw->flags[n0] = event->hw.event_base; in power_pmu_add() 1668 if (check_excludes(cpuhw->event, cpuhw->flags, n0, 1)) in power_pmu_add() 1670 if (power_check_constraints(cpuhw, cpuhw->events, cpuhw->flags, n0 + 1, cpuhw->event)) in power_pmu_add() 1672 event->hw.config = cpuhw->events[n0]; in power_pmu_add()
|
/linux-5.19.10/arch/x86/events/ |
D | core.c | 979 int n0, i, wmin, wmax, unsched = 0; in x86_schedule_events() local 990 n0 = cpuc->n_events; in x86_schedule_events() 992 n0 -= cpuc->n_txn; in x86_schedule_events() 1003 WARN_ON_ONCE((c && i >= n0) || (!c && i < n0)); in x86_schedule_events() 1095 for (i = n0; i < n; i++) { in x86_schedule_events() 1455 int n, n0, ret; in x86_pmu_add() local 1459 n0 = cpuc->n_events; in x86_pmu_add() 1494 cpuc->n_added += n - n0; in x86_pmu_add() 1495 cpuc->n_txn += n - n0; in x86_pmu_add()
|
/linux-5.19.10/Documentation/block/ |
D | ioprio.rst | 52 # ionice -c2 -n0 /bin/ls
|
/linux-5.19.10/tools/testing/selftests/netfilter/ |
D | nft_concat_range.sh | 925 -t $(($(nproc) / 5 + 1)) -b10000 -n0 2>/dev/null & 932 -t $(($(nproc) / 5 + 1)) -b10000 -n0 2>/dev/null &
|
/linux-5.19.10/include/math-emu/ |
D | op-4.h | 341 #define umul_ppppmnnn(p3,p2,p1,p0,m,n2,n1,n0) \ argument 344 umul_ppmm(p1,p0,m,n0); \
|
/linux-5.19.10/drivers/media/tuners/ |
D | mt2063.c | 684 u32 n, n0; in IsSpurInBand() local 713 n0 = DIV_ROUND_UP(f_LO2 - d, f_LO1 - f_LO2); in IsSpurInBand() 716 for (n = n0; n <= pAS_Info->maxH1; ++n) { in IsSpurInBand()
|