Searched refs:n1 (Results 1 - 25 of 98) sorted by relevance

1234

/linux-master/arch/alpha/lib/
H A Dudiv-qrnnd.S44 #define n1 $17 define
54 addq n1,n1,n1
55 bis n1,tmp,n1
57 cmpule d,n1,qb
58 subq n1,d,tmp
59 cmovne qb,tmp,n1
62 addq n1,n
[all...]
/linux-master/arch/powerpc/math-emu/
H A Dudivmodti4.c11 _FP_W_TYPE n1, _FP_W_TYPE n0,
20 if (d0 > n1)
24 udiv_qrnnd (q0, n0, n1, n0, d0);
36 udiv_qrnnd (q1, n1, 0, n1, d0);
37 udiv_qrnnd (q0, n0, n1, n0, d0);
47 if (d0 > n1)
59 n1 = (n1 << bm) | (n0 >> (_FP_W_TYPE_SIZE - bm));
63 udiv_qrnnd (q0, n0, n1, n
10 _fp_udivmodti4(_FP_W_TYPE q[2], _FP_W_TYPE r[2], _FP_W_TYPE n1, _FP_W_TYPE n0, _FP_W_TYPE d1, _FP_W_TYPE d0) argument
[all...]
/linux-master/lib/crypto/mpi/
H A Dmpih-div.c33 mpi_limb_t n1, n0, r; local
70 n1 = dividend_ptr[dividend_size - 1];
71 r = n1 >> (BITS_PER_MPI_LIMB - normalization_steps);
75 * && divisor_limb > ((n1 << normalization_steps)
82 ((n1 << normalization_steps)
85 n1 = n0;
88 n1 << normalization_steps,
129 n1 = dividend_ptr[dividend_size - 1];
130 r = n1 >> (BITS_PER_MPI_LIMB - normalization_steps);
134 * && divisor_limb > ((n1 << normalization_step
207 mpi_limb_t n1; local
233 mpi_limb_t n1, n0, n2; local
316 mpi_limb_t n1, n2; local
384 mpi_limb_t n1, n0, r; local
[all...]
/linux-master/lib/math/
H A Drational.c45 * n2/d2, n1/d1, and n0/d0 are our successively more accurate
51 unsigned long n, d, n0, d0, n1, d1, n2, d2; local
55 n1 = d0 = 1;
74 n2 = n0 + a * n1;
87 if (n1)
88 t = min(t, (max_numerator - n0) / n1);
95 n1 = n0 + t * n1;
100 n0 = n1;
101 n1
[all...]
/linux-master/drivers/clk/meson/
H A Dclk-dualdiv.h14 unsigned int n1; member in struct:meson_clk_dualdiv_param
22 struct parm n1; member in struct:meson_clk_dualdiv_data
H A Dclk-dualdiv.c41 return DIV_ROUND_CLOSEST(parent_rate, p->n1);
44 p->n1 * p->m1 + p->n2 * p->m2);
55 setting.n1 = meson_parm_read(clk->map, &dualdiv->n1) + 1;
74 for (i = 0; table[i].n1; i++) {
120 meson_parm_write(clk->map, &dualdiv->n1, setting->n1 - 1);
/linux-master/tools/testing/selftests/bpf/benchs/
H A Drun_common.sh62 summary=$(echo $2 | tail -n1)
69 summary=$(echo $2 | tail -n1)
76 summary=$(echo $2 | tail -n1)
83 summary=$(echo $2 | tail -n1)
90 summary=$(echo $2 | tail -n1)
H A Drun_bench_rename.sh7 summary=$(sudo ./bench -w2 -d5 -a rename-$i | tail -n1 | cut -d'(' -f1 | cut -d' ' -f3-)
H A Drun_bench_uprobes.sh7 summary=$(sudo ./bench -w2 -d5 -a trig-$i | tail -n1 | cut -d'(' -f1 | cut -d' ' -f3-)
H A Drun_bench_htab_mem.sh21 local summary=$(echo $2 | tail -n1)
H A Drun_bench_trigger.sh21 summary=$(sudo ./bench -w2 -d5 -a -p$p trig-$t | tail -n1 | cut -d'(' -f1 | cut -d' ' -f3-)
/linux-master/tools/testing/selftests/kvm/lib/
H A Delf.c137 for (unsigned int n1 = 0; n1 < hdr.e_phnum; n1++) {
139 offset = hdr.e_phoff + (n1 * hdr.e_phentsize);
145 n1, filename, (intmax_t) offset_rv, errno);
159 n1, (uint64_t) phdr.p_memsz);
172 n1, seg_vstart, vaddr);
188 n1, errno, (intmax_t) offset_rv,
H A Dsparsebit.c383 unsigned int n1 = (prev->idx + MASK_BITS + prev->num_after - 1) local
386 assert(n1 < MASK_BITS);
387 assert(!(nodep->mask & (1 << n1)));
388 nodep->mask |= (1 << n1);
903 int n1 = __builtin_ctz(nodep->mask & -leading); local
905 return nodep->idx + n1;
911 int n1 = __builtin_ctz(~nodep->mask & -leading); local
913 return nodep->idx + n1;
1374 unsigned int n1; local
1429 for (n1
1456 unsigned int n1; local
1601 unsigned int n1; local
1689 unsigned int n1; local
[all...]
/linux-master/drivers/clk/
H A Dclk-si570.c69 * @n1: Clock divider N1
81 unsigned int n1; member in struct:clk_si570
93 * @n1: Divider N1 (output)
100 unsigned int *n1, unsigned int *hs_div)
112 *n1 = ((reg[0] & N1_6_2_MASK) << 2) + ((reg[1] & N1_1_0_MASK) >> 6) + 1;
114 if (*n1 > 1)
115 *n1 &= ~1;
144 err = si570_get_divs(data, &data->rfreq, &data->n1, &data->hs_div);
152 fdco = fout * data->n1 * data->hs_div;
172 reg[0] = ((data->n1
99 si570_get_divs(struct clk_si570 *data, u64 *rfreq, unsigned int *n1, unsigned int *hs_div) argument
199 unsigned int n1, hs_div; local
234 unsigned int n1, hs_div; local
254 unsigned int n1, hs_div; local
[all...]
/linux-master/tools/testing/selftests/wireguard/
H A Dnetns.sh38 n1() { pretty 1 "$*"; maybe_exec ip netns exec $netns1 "$@"; } function
100 n1 wg set wg0 \
121 n1 ping -c 10 -f -W 1 192.168.241.2
125 n1 ping6 -c 10 -f -W 1 fd00::2
130 n1 iperf3 -Z -t 3 -c 192.168.241.2
133 n1 iperf3 -s -1 -B fd00::1 &
138 n1 iperf3 -s -1 -B 192.168.241.1 &
145 n1 iperf3 -Z -t 3 -b 0 -u -c fd00::2
154 n1 iperf3 -Z -t 3 -p $(( 5200 + i )) -c 192.168.241.2 &
163 n1 w
[all...]
/linux-master/tools/testing/selftests/mm/
H A Dmigration.c28 int n1; local
38 self->n1 = -1;
43 if (self->n1 == -1) {
44 self->n1 = n;
63 int migrate(uint64_t *ptr, int n1, int n2) argument
90 n2 = n1;
91 n1 = tmp;
123 if (self->nthreads < 2 || self->n1 < 0 || self->n2 < 0)
135 ASSERT_EQ(migrate(ptr, self->n1, self->n2), 0);
149 if (self->nthreads < 2 || self->n1 <
[all...]
/linux-master/arch/alpha/math-emu/
H A Dsfp-util.h21 #define udiv_qrnnd(q, r, n1, n0, d) \
23 (q) = __udiv_qrnnd (&__r, (n1), (n0), (d)); \
/linux-master/arch/sparc/math-emu/
H A Dsfp-util_32.h77 #define udiv_qrnnd(q, r, n1, n0, d) \
105 "1" ((USItype)(n1)), \
H A Dsfp-util_64.h76 #define udiv_qrnnd(q, r, n1, n0, d) \
82 __r1 = (n1) % __d1; \
83 __q1 = (n1) / __d1; \
/linux-master/arch/arm/tools/
H A Dsyscallnr.sh11 grep -E "^[0-9A-Fa-fXx]+[[:space:]]+" "$in" | sort -n | tail -n1 | (
/linux-master/scripts/
H A Dmkcompile_h19 LD_VERSION=$(LC_ALL=C $LD -v | head -n1 |
/linux-master/security/selinux/ss/
H A Debitmap.c30 const struct ebitmap_node *n1, *n2; local
35 n1 = e1->node;
37 while (n1 && n2 && (n1->startbit == n2->startbit) &&
38 !memcmp(n1->maps, n2->maps, EBITMAP_SIZE / 8)) {
39 n1 = n1->next;
43 if (n1 || n2)
221 const struct ebitmap_node *n1, *n2; local
227 n1
[all...]
/linux-master/arch/sh/math-emu/
H A Dsfp-util.h32 #define udiv_qrnnd(q, r, n1, n0, d) \
39 __r1 = (n1) % __d1; \
40 __q1 = (n1) / __d1; \
/linux-master/tools/testing/selftests/pstore/
H A Dpstore_post_reboot_tests25 mount_point=`echo ${mount_info} | cut -d' ' -f2 | head -n1`
30 mount_point=`grep pstore /proc/mounts | cut -d' ' -f2 | head -n1`
/linux-master/arch/mips/bcm63xx/
H A Dcpu.c164 unsigned int tmp, n1, n2, m1; local
168 n1 = (tmp & MIPSPLLCTL_N1_MASK) >> MIPSPLLCTL_N1_SHIFT;
171 n1 += 1;
174 return (16 * 1000000 * n1 * n2) / m1;
179 unsigned int tmp, n1, n2, m1; local
183 n1 = (tmp & DMIPSPLLCFG_N1_MASK) >> DMIPSPLLCFG_N1_SHIFT;
186 return (16 * 1000000 * n1 * n2) / m1;

Completed in 220 milliseconds

1234