Home
last modified time | relevance | path

Searched refs:n1 (Results 1 – 25 of 295) sorted by relevance

12345678910>>...12

/OK3568_Linux_fs/kernel/arch/alpha/math-emu/
H A Dqrnnd.S43 #define n1 $17 macro
53 addq n1,n1,n1
54 bis n1,tmp,n1
56 cmpule d,n1,qb
57 subq n1,d,tmp
58 cmovne qb,tmp,n1
61 addq n1,n1,n1
62 bis n1,tmp,n1
64 cmpule d,n1,qb
65 subq n1,d,tmp
[all …]
/OK3568_Linux_fs/kernel/arch/powerpc/math-emu/
H A Dudivmodti4.c11 _FP_W_TYPE n1, _FP_W_TYPE n0, in _fp_udivmodti4() argument
20 if (d0 > n1) in _fp_udivmodti4()
24 udiv_qrnnd (q0, n0, n1, n0, d0); in _fp_udivmodti4()
36 udiv_qrnnd (q1, n1, 0, n1, d0); in _fp_udivmodti4()
37 udiv_qrnnd (q0, n0, n1, n0, d0); in _fp_udivmodti4()
47 if (d0 > n1) in _fp_udivmodti4()
59 n1 = (n1 << bm) | (n0 >> (_FP_W_TYPE_SIZE - bm)); in _fp_udivmodti4()
63 udiv_qrnnd (q0, n0, n1, n0, d0); in _fp_udivmodti4()
86 n1 -= d0; in _fp_udivmodti4()
98 n2 = n1 >> b; in _fp_udivmodti4()
[all …]
/OK3568_Linux_fs/kernel/lib/mpi/
H A Dmpih-div.c33 mpi_limb_t n1, n0, r; in mpihelp_mod_1() local
70 n1 = dividend_ptr[dividend_size - 1]; in mpihelp_mod_1()
71 r = n1 >> (BITS_PER_MPI_LIMB - normalization_steps); in mpihelp_mod_1()
82 ((n1 << normalization_steps) in mpihelp_mod_1()
85 n1 = n0; in mpihelp_mod_1()
88 n1 << normalization_steps, in mpihelp_mod_1()
129 n1 = dividend_ptr[dividend_size - 1]; in mpihelp_mod_1()
130 r = n1 >> (BITS_PER_MPI_LIMB - normalization_steps); in mpihelp_mod_1()
141 ((n1 << normalization_steps) in mpihelp_mod_1()
144 n1 = n0; in mpihelp_mod_1()
[all …]
H A Dlonglong.h144 #define udiv_qrnnd(q, r, n1, n0, d) \ argument
148 : "1" ((USItype)(n1)), \
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
426 "1" ((USItype)(n1)), \
[all …]
/OK3568_Linux_fs/u-boot/arch/nios2/lib/
H A Dlibgcc.c153 UWtype d0, d1, n0, n1, n2; in __udivmoddi4() local
160 n1 = nn.s.high; in __udivmoddi4()
165 if (d0 > n1) in __udivmoddi4()
169 udiv_qrnnd (q0, n0, n1, n0, d0); in __udivmoddi4()
181 udiv_qrnnd (q1, n1, 0, n1, d0); in __udivmoddi4()
182 udiv_qrnnd (q0, n0, n1, n0, d0); in __udivmoddi4()
199 if (d0 > n1) in __udivmoddi4()
211 n1 = (n1 << bm) | (n0 >> (W_TYPE_SIZE - bm)); in __udivmoddi4()
215 udiv_qrnnd (q0, n0, n1, n0, d0); in __udivmoddi4()
238 n1 -= d0; in __udivmoddi4()
[all …]
/OK3568_Linux_fs/kernel/tools/testing/selftests/wireguard/
H A Dnetns.sh36 n1() { pretty 1 "$*"; maybe_exec ip netns exec $netns1 "$@"; } function
98 n1 wg set wg0 \
119 n1 ping -c 10 -f -W 1 192.168.241.2
123 n1 ping6 -c 10 -f -W 1 fd00::2
128 n1 iperf3 -Z -t 3 -c 192.168.241.2
131 n1 iperf3 -s -1 -B fd00::1 &
136 n1 iperf3 -s -1 -B 192.168.241.1 &
143 n1 iperf3 -Z -t 3 -b 0 -u -c fd00::2
153 n1 iperf3 -Z -t 3 -p $(( 5200 + i )) -c 192.168.241.2 &
163 n1 wg set wg0 peer "$pub2" endpoint 127.0.0.1:2
[all …]
/OK3568_Linux_fs/kernel/drivers/clk/
H A Dclk-si570.c71 unsigned int n1; member
95 unsigned int *n1, unsigned int *hs_div) in si570_get_divs() argument
107 *n1 = ((reg[0] & N1_6_2_MASK) << 2) + ((reg[1] & N1_1_0_MASK) >> 6) + 1; in si570_get_divs()
109 if (*n1 > 1) in si570_get_divs()
110 *n1 &= ~1; in si570_get_divs()
135 err = si570_get_divs(data, &data->rfreq, &data->n1, &data->hs_div); in si570_get_defaults()
143 fdco = fout * data->n1 * data->hs_div; in si570_get_defaults()
163 reg[0] = ((data->n1 - 1) << 6) | in si570_update_rfreq()
190 unsigned int n1, hs_div; in si570_calc_divs() local
197 n1 = div_u64(div_u64(FDCO_MIN, hs_div), frequency); in si570_calc_divs()
[all …]
/OK3568_Linux_fs/kernel/lib/math/
H A Drational.c50 unsigned long n, d, n0, d0, n1, d1, n2, d2; in rational_best_approximation() local
54 n1 = d0 = 1; in rational_best_approximation()
73 n2 = n0 + a * n1; in rational_best_approximation()
86 if (n1) in rational_best_approximation()
87 t = min(t, (max_numerator - n0) / n1); in rational_best_approximation()
94 n1 = n0 + t * n1; in rational_best_approximation()
99 n0 = n1; in rational_best_approximation()
100 n1 = n2; in rational_best_approximation()
104 *best_numerator = n1; in rational_best_approximation()
/OK3568_Linux_fs/u-boot/lib/
H A Drational.c48 unsigned long n, d, n0, d0, n1, d1, n2, d2; in rational_best_approximation() local
52 n1 = d0 = 1; in rational_best_approximation()
71 n2 = n0 + a * n1; in rational_best_approximation()
80 unsigned long t = min((max_numerator - n0) / n1, in rational_best_approximation()
87 n1 = n0 + t * n1; in rational_best_approximation()
92 n0 = n1; in rational_best_approximation()
93 n1 = n2; in rational_best_approximation()
97 *best_numerator = n1; in rational_best_approximation()
/OK3568_Linux_fs/kernel/security/selinux/ss/
H A Debitmap.c33 struct ebitmap_node *n1, *n2; in ebitmap_cmp() local
38 n1 = e1->node; in ebitmap_cmp()
40 while (n1 && n2 && in ebitmap_cmp()
41 (n1->startbit == n2->startbit) && in ebitmap_cmp()
42 !memcmp(n1->maps, n2->maps, EBITMAP_SIZE / 8)) { in ebitmap_cmp()
43 n1 = n1->next; in ebitmap_cmp()
47 if (n1 || n2) in ebitmap_cmp()
222 struct ebitmap_node *n1, *n2; in ebitmap_contains() local
228 n1 = e1->node; in ebitmap_contains()
231 while (n1 && n2 && (n1->startbit <= n2->startbit)) { in ebitmap_contains()
[all …]
/OK3568_Linux_fs/kernel/tools/testing/selftests/kvm/lib/
H A Delf.c138 for (unsigned int n1 = 0; n1 < hdr.e_phnum; n1++) { in kvm_vm_elf_load() local
140 offset = hdr.e_phoff + (n1 * hdr.e_phentsize); in kvm_vm_elf_load()
146 n1, filename, (intmax_t) offset_rv, errno); in kvm_vm_elf_load()
160 n1, (uint64_t) phdr.p_memsz); in kvm_vm_elf_load()
174 n1, seg_vstart, vaddr); in kvm_vm_elf_load()
190 n1, errno, (intmax_t) offset_rv, in kvm_vm_elf_load()
H A Dsparsebit.c383 unsigned int n1 = (prev->idx + MASK_BITS + prev->num_after - 1) in node_add() local
386 assert(n1 < MASK_BITS); in node_add()
387 assert(!(nodep->mask & (1 << n1))); in node_add()
388 nodep->mask |= (1 << n1); in node_add()
904 int n1 = __builtin_ctz(nodep->mask & -leading); in node_first_set() local
906 return nodep->idx + n1; in node_first_set()
912 int n1 = __builtin_ctz(~nodep->mask & -leading); in node_first_clear() local
914 return nodep->idx + n1; in node_first_clear()
1375 unsigned int n1; in sparsebit_set_num() local
1430 for (n1 = 0; n1 < MASK_BITS; n1++) { in sparsebit_set_num()
[all …]
/OK3568_Linux_fs/kernel/drivers/clk/meson/
H A Dclk-dualdiv.c41 return DIV_ROUND_CLOSEST(parent_rate, p->n1); in __dualdiv_param_to_rate()
44 p->n1 * p->m1 + p->n2 * p->m2); in __dualdiv_param_to_rate()
55 setting.n1 = meson_parm_read(clk->map, &dualdiv->n1) + 1; in meson_clk_dualdiv_recalc_rate()
74 for (i = 0; table[i].n1; i++) { in __dualdiv_get_setting()
115 meson_parm_write(clk->map, &dualdiv->n1, setting->n1 - 1); in meson_clk_dualdiv_set_rate()
/OK3568_Linux_fs/kernel/arch/mips/bcm63xx/
H A Dcpu.c164 unsigned int tmp, n1, n2, m1; in detect_cpu_clock() local
168 n1 = (tmp & MIPSPLLCTL_N1_MASK) >> MIPSPLLCTL_N1_SHIFT; in detect_cpu_clock()
171 n1 += 1; in detect_cpu_clock()
174 return (16 * 1000000 * n1 * n2) / m1; in detect_cpu_clock()
179 unsigned int tmp, n1, n2, m1; in detect_cpu_clock() local
183 n1 = (tmp & DMIPSPLLCFG_N1_MASK) >> DMIPSPLLCFG_N1_SHIFT; in detect_cpu_clock()
186 return (16 * 1000000 * n1 * n2) / m1; in detect_cpu_clock()
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/stb/
H A Dstb_image_resize.h488 int n1; // Last contributing pixel member
1046 contributor->n1 = in_last_pixel; in stbir__calculate_coefficients_upsample()
1048 STBIR_ASSERT(contributor->n1 >= contributor->n0); in stbir__calculate_coefficients_upsample()
1083 contributor->n1 = contributor->n0 + i - 1; in stbir__calculate_coefficients_upsample()
1094 contributor->n1 = out_last_pixel; in stbir__calculate_coefficients_downsample()
1096 STBIR_ASSERT(contributor->n1 >= contributor->n0); in stbir__calculate_coefficients_downsample()
1113 contributor->n1 = contributor->n0 + i - 1; in stbir__calculate_coefficients_downsample()
1131 if (i >= contributors[j].n0 && i <= contributors[j].n1) in stbir__normalize_downsample_coefficients()
1147 if (i >= contributors[j].n0 && i <= contributors[j].n1) in stbir__normalize_downsample_coefficients()
1172 range = contributors[j].n1 - contributors[j].n0 + 1; in stbir__normalize_downsample_coefficients()
[all …]
/OK3568_Linux_fs/external/rknpu2/examples/librknn_api_android_demo/include/stb/
H A Dstb_image_resize.h488 int n1; // Last contributing pixel member
1046 contributor->n1 = in_last_pixel; in stbir__calculate_coefficients_upsample()
1048 STBIR_ASSERT(contributor->n1 >= contributor->n0); in stbir__calculate_coefficients_upsample()
1083 contributor->n1 = contributor->n0 + i - 1; in stbir__calculate_coefficients_upsample()
1094 contributor->n1 = out_last_pixel; in stbir__calculate_coefficients_downsample()
1096 STBIR_ASSERT(contributor->n1 >= contributor->n0); in stbir__calculate_coefficients_downsample()
1113 contributor->n1 = contributor->n0 + i - 1; in stbir__calculate_coefficients_downsample()
1131 if (i >= contributors[j].n0 && i <= contributors[j].n1) in stbir__normalize_downsample_coefficients()
1147 if (i >= contributors[j].n0 && i <= contributors[j].n1) in stbir__normalize_downsample_coefficients()
1172 range = contributors[j].n1 - contributors[j].n0 + 1; in stbir__normalize_downsample_coefficients()
[all …]
/OK3568_Linux_fs/buildroot/package/mpir/
H A D0001-mpn-arm-udiv.asm-workaround-binutils-bug-14887.patch20 @@ -50,7 +50,7 @@ L(oop): divstep(n1,n0,d)
24 - str n1, [ rem_ptr ] C store remainder
25 + str n1, [rem_ptr] C store remainder
33 - str n1, [ rem_ptr ] C store remainder
34 + str n1, [rem_ptr] C store remainder
/OK3568_Linux_fs/kernel/arch/mips/ralink/
H A Drt305x.c222 u32 n1; in prom_soc_init() local
226 n1 = __raw_readl(sysc + SYSC_REG_CHIP_NAME1); in prom_soc_init()
228 if (n0 == RT3052_CHIP_NAME0 && n1 == RT3052_CHIP_NAME1) { in prom_soc_init()
241 } else if (n0 == RT3350_CHIP_NAME0 && n1 == RT3350_CHIP_NAME1) { in prom_soc_init()
245 } else if (n0 == RT3352_CHIP_NAME0 && n1 == RT3352_CHIP_NAME1) { in prom_soc_init()
249 } else if (n0 == RT5350_CHIP_NAME0 && n1 == RT5350_CHIP_NAME1) { in prom_soc_init()
254 panic("rt305x: unknown SoC, n0:%08x n1:%08x", n0, n1); in prom_soc_init()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/mpl/aux_/preprocessed/gcc/
H A Dbind.hpp80 typedef typename r0::next n1; typedef
132 typedef typename r0::next n1; typedef
135 typedef aux::replace_unnamed_arg< T1,n1 > r1;
190 typedef typename r0::next n1; typedef
193 typedef aux::replace_unnamed_arg< T1,n1 > r1;
253 typedef typename r0::next n1; typedef
256 typedef aux::replace_unnamed_arg< T1,n1 > r1;
321 typedef typename r0::next n1; typedef
324 typedef aux::replace_unnamed_arg< T1,n1 > r1;
396 typedef typename r0::next n1; typedef
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/mpl/aux_/preprocessed/mwcw/
H A Dbind.hpp80 typedef typename r0::next n1; typedef
132 typedef typename r0::next n1; typedef
135 typedef aux::replace_unnamed_arg< T1,n1 > r1;
190 typedef typename r0::next n1; typedef
193 typedef aux::replace_unnamed_arg< T1,n1 > r1;
253 typedef typename r0::next n1; typedef
256 typedef aux::replace_unnamed_arg< T1,n1 > r1;
321 typedef typename r0::next n1; typedef
324 typedef aux::replace_unnamed_arg< T1,n1 > r1;
396 typedef typename r0::next n1; typedef
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/mpl/aux_/preprocessed/plain/
H A Dbind.hpp80 typedef typename r0::next n1; typedef
132 typedef typename r0::next n1; typedef
135 typedef aux::replace_unnamed_arg< T1,n1 > r1;
190 typedef typename r0::next n1; typedef
193 typedef aux::replace_unnamed_arg< T1,n1 > r1;
253 typedef typename r0::next n1; typedef
256 typedef aux::replace_unnamed_arg< T1,n1 > r1;
321 typedef typename r0::next n1; typedef
324 typedef aux::replace_unnamed_arg< T1,n1 > r1;
396 typedef typename r0::next n1; typedef
[all …]
/OK3568_Linux_fs/buildroot/dl/sox/git/lpc10/
H A Ddifmag.c72 integer i__, j, n1, n2; in difmag_() local
89 n1 = (*maxlag - tau[i__]) / 2 + 1; in difmag_()
90 n2 = n1 + *lpita - 1; in difmag_()
93 for (j = n1; j <= i__2; j += 4) { in difmag_()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/mpl/aux_/preprocessed/msvc70/
H A Dbind.hpp134 typedef typename r0::next n1; typedef
172 typedef typename r0::next n1; typedef
175 typedef aux::replace_unnamed_arg< T1,n1 > r1;
216 typedef typename r0::next n1; typedef
219 typedef aux::replace_unnamed_arg< T1,n1 > r1;
265 typedef typename r0::next n1; typedef
268 typedef aux::replace_unnamed_arg< T1,n1 > r1;
319 typedef typename r0::next n1; typedef
322 typedef aux::replace_unnamed_arg< T1,n1 > r1;
380 typedef typename r0::next n1; typedef
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/mpl/aux_/preprocessed/bcc_pre590/
H A Dbind.hpp68 typedef typename r0::next n1; typedef
111 typedef typename r0::next n1; typedef
114 typedef aux::replace_unnamed_arg< T1,n1 > r1;
160 typedef typename r0::next n1; typedef
163 typedef aux::replace_unnamed_arg< T1,n1 > r1;
214 typedef typename r0::next n1; typedef
217 typedef aux::replace_unnamed_arg< T1,n1 > r1;
273 typedef typename r0::next n1; typedef
276 typedef aux::replace_unnamed_arg< T1,n1 > r1;
339 typedef typename r0::next n1; typedef
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/mpl/aux_/preprocessed/bcc/
H A Dbind.hpp68 typedef typename r0::next n1; typedef
111 typedef typename r0::next n1; typedef
114 typedef aux::replace_unnamed_arg< T1,n1 > r1;
160 typedef typename r0::next n1; typedef
163 typedef aux::replace_unnamed_arg< T1,n1 > r1;
214 typedef typename r0::next n1; typedef
217 typedef aux::replace_unnamed_arg< T1,n1 > r1;
273 typedef typename r0::next n1; typedef
276 typedef aux::replace_unnamed_arg< T1,n1 > r1;
339 typedef typename r0::next n1; typedef
[all …]

12345678910>>...12