Home
last modified time | relevance | path

Searched refs:mu (Results 1 – 25 of 244) sorted by relevance

12345678910

/netbsd-src/usr.sbin/mlxctl/
H A Dutil.c81 mlx_command(struct mlx_usercommand *mu, int bomb) in mlx_command() argument
85 if ((rv = ioctl(mlxfd, MLX_COMMAND, mu)) != 0 && bomb) in mlx_command()
87 mu->mu_command[0]); in mlx_command()
95 struct mlx_usercommand mu; in mlx_enquiry() local
98 memset(&mu, 0, sizeof(mu)); in mlx_enquiry()
100 mu.mu_datasize = sizeof(*enq); in mlx_enquiry()
101 mu.mu_buf = enq; in mlx_enquiry()
102 mu.mu_bufptr = 8; in mlx_enquiry()
103 mu.mu_bufdir = MU_XFER_IN; in mlx_enquiry()
104 mu.mu_command[0] = MLX_CMD_ENQUIRY2; in mlx_enquiry()
[all …]
/netbsd-src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/freescale/
H A Dimx8qm-ss-lsio.dtsi40 compatible = "fsl,imx8-mu-scu", "fsl,imx8qm-mu", "fsl,imx6sx-mu";
44 compatible = "fsl,imx8-mu-scu", "fsl,imx8qm-mu", "fsl,imx6sx-mu";
48 compatible = "fsl,imx8-mu-scu", "fsl,imx8qm-mu", "fsl,imx6sx-mu";
52 compatible = "fsl,imx8-mu-scu", "fsl,imx8qm-mu", "fsl,imx6sx-mu";
56 compatible = "fsl,imx8-mu-scu", "fsl,imx8qm-mu", "fsl,imx6sx-mu";
60 compatible = "fsl,imx8qm-mu", "fsl,imx6sx-mu";
H A Dimx8qxp-ss-lsio.dtsi40 compatible = "fsl,imx8qxp-mu", "fsl,imx6sx-mu";
44 compatible = "fsl,imx8-mu-scu", "fsl,imx8qxp-mu", "fsl,imx6sx-mu";
48 compatible = "fsl,imx8-mu-scu", "fsl,imx8qxp-mu", "fsl,imx6sx-mu";
52 compatible = "fsl,imx8-mu-scu", "fsl,imx8qxp-mu", "fsl,imx6sx-mu";
56 compatible = "fsl,imx8-mu-scu", "fsl,imx8qxp-mu", "fsl,imx6sx-mu";
60 compatible = "fsl,imx8qxp-mu", "fsl,imx6sx-mu";
/netbsd-src/external/apache2/llvm/dist/clang/docs/
H A DThreadSafetyAnalysis.rst20 *guarded by* the mutex ``mu``, then the analysis will issue a warning whenever
21 a piece of code reads or writes to ``foo`` without first locking ``mu``.
35 Mutex mu;
36 int balance GUARDED_BY(mu);
39 balance += amount; // WARNING! Cannot write balance without locking mu.
42 void withdrawImpl(int amount) REQUIRES(mu) {
43 balance -= amount; // OK. Caller must have locked mu.
48 mu.Lock();
49 withdrawImpl(amount); // OK. We've locked mu.
50 } // WARNING! Failed to unlock mu.
[all …]
/netbsd-src/crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/
H A Dbn_s_mp_exptmod.c27 mp_int M[TAB_SIZE], res, mu; in s_mp_exptmod() local
74 if ((err = mp_init (&mu)) != MP_OKAY) { in s_mp_exptmod()
79 if ((err = mp_reduce_setup (&mu, P)) != MP_OKAY) { in s_mp_exptmod()
84 if ((err = mp_reduce_2k_setup_l (P, &mu)) != MP_OKAY) { in s_mp_exptmod()
117 if ((err = redux (&M[1 << (winsize - 1)], P, &mu)) != MP_OKAY) { in s_mp_exptmod()
129 if ((err = redux (&M[x], P, &mu)) != MP_OKAY) { in s_mp_exptmod()
178 if ((err = redux (&res, P, &mu)) != MP_OKAY) { in s_mp_exptmod()
195 if ((err = redux (&res, P, &mu)) != MP_OKAY) { in s_mp_exptmod()
204 if ((err = redux (&res, P, &mu)) != MP_OKAY) { in s_mp_exptmod()
222 if ((err = redux (&res, P, &mu)) != MP_OKAY) { in s_mp_exptmod()
[all …]
H A Dbn_mp_dr_reduce.c39 mp_digit mu, *tmpx1, *tmpx2; in mp_dr_reduce() local
63 mu = 0; in mp_dr_reduce()
67 r = ((mp_word)*tmpx2++) * ((mp_word)k) + *tmpx1 + mu; in mp_dr_reduce()
69 mu = (mp_digit)(r >> ((mp_word)DIGIT_BIT)); in mp_dr_reduce()
73 *tmpx1++ = mu; in mp_dr_reduce()
H A Dbn_mp_add_d.c25 mp_digit *tmpa, *tmpc, mu; in mp_add_d() local
69 mu = *tmpc >> DIGIT_BIT; in mp_add_d()
74 *tmpc = *tmpa++ + mu; in mp_add_d()
75 mu = *tmpc >> DIGIT_BIT; in mp_add_d()
80 *tmpc++ = mu; in mp_add_d()
H A Dbn_mp_sub_d.c24 mp_digit *tmpa, *tmpc, mu; in mp_sub_d() local
72 mu = *tmpc >> (sizeof(mp_digit) * CHAR_BIT - 1); in mp_sub_d()
77 *tmpc = *tmpa++ - mu; in mp_sub_d()
78 mu = *tmpc >> (sizeof(mp_digit) * CHAR_BIT - 1); in mp_sub_d()
H A Dbn_mp_reduce.c24 int mp_reduce (mp_int * x, mp_int * m, mp_int * mu) in mp_reduce() argument
39 if ((res = mp_mul (&q, mu, &q)) != MP_OKAY) { in mp_reduce()
44 if ((res = s_mp_mul_high_digs (&q, mu, &q, um)) != MP_OKAY) { in mp_reduce()
48 if ((res = fast_s_mp_mul_high_digs (&q, mu, &q, um)) != MP_OKAY) { in mp_reduce()
H A Dbn_mp_montgomery_reduce.c25 mp_digit mu; in mp_montgomery_reduce() local
57 mu = (mp_digit) (((mp_word)x->dp[ix]) * ((mp_word)rho) & MP_MASK); in mp_montgomery_reduce()
77 r = ((mp_word)mu) * ((mp_word)*tmpn++) + in mp_montgomery_reduce()
H A Dbn_fast_mp_montgomery_reduce.c77 register mp_digit mu; in fast_mp_montgomery_reduce() local
78 mu = (mp_digit) (((W[ix] & MP_MASK) * rho) & MP_MASK); in fast_mp_montgomery_reduce()
107 *_W++ += ((mp_word)mu) * ((mp_word)*tmpn++); in fast_mp_montgomery_reduce()
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/tests/
H A Dmsgunfmt-212 cat <<EOF > mu-2.in
20 ${MSGFMT} -o mu-2.mo mu-2.in
25 ${MSGUNFMT} -o mu-2.out mu-2.mo
29 ${DIFF} mu-2.in mu-2.out
H A Dmsgunfmt-properties-19 cat <<EOF > mu-p-1.in
29 ${MSGFMT} --properties-input -o mu-p-1.mo mu-p-1.in
34 ${MSGUNFMT} --properties-output -o mu-p-1.out mu-p-1.mo
38 ${DIFF} mu-p-1.in mu-p-1.out
H A Dmsgunfmt-19 cat <<EOF > mu-test1.in
37 ${MSGFMT} -o mu-test1.mo mu-test1.in
42 ${MSGUNFMT} -o mu-test1.out mu-test1.mo
46 ${DIFF} mu-test1.in mu-test1.out
/netbsd-src/external/mit/isl/dist/
H A Dbasis_reduction_templ.c65 isl_int mu[2]; in isl_tab_compute_reduced_basis() local
94 isl_int_init(mu[0]); in isl_tab_compute_reduced_basis()
95 isl_int_init(mu[1]); in isl_tab_compute_reduced_basis()
182 GBR_floor(mu[0], alpha); in isl_tab_compute_reduced_basis()
183 GBR_ceil(mu[1], alpha); in isl_tab_compute_reduced_basis()
185 if (isl_int_eq(mu[0], mu[1])) in isl_tab_compute_reduced_basis()
186 isl_int_set(tmp, mu[0]); in isl_tab_compute_reduced_basis()
191 isl_int_set(tmp, mu[j]); in isl_tab_compute_reduced_basis()
210 isl_int_set(tmp, mu[j]); in isl_tab_compute_reduced_basis()
299 isl_int_clear(mu[0]); in isl_tab_compute_reduced_basis()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_mutex.h366 explicit GenericScopedLock(MutexType *mu) ACQUIRE(mu) : mu_(mu) { in GenericScopedLock() argument
382 explicit GenericScopedReadLock(MutexType *mu) ACQUIRE(mu) : mu_(mu) { in GenericScopedReadLock() argument
398 ALWAYS_INLINE explicit GenericScopedRWLock(MutexType *mu, bool write) in GenericScopedRWLock() argument
399 ACQUIRE(mu) in GenericScopedRWLock()
400 : mu_(mu), write_(write) { in GenericScopedRWLock()
/netbsd-src/sys/dev/ic/
H A Dmlx.c1718 mlx_user_command(struct mlx_softc *mlx, struct mlx_usercommand *mu) in mlx_user_command() argument
1725 if ((mu->mu_bufdir & ~MU_XFER_MASK) != 0) in mlx_user_command()
1738 memcpy(mc->mc_mbox, mu->mu_command, sizeof(mc->mc_mbox)); in mlx_user_command()
1744 if (mu->mu_datasize > 0) { in mlx_user_command()
1745 if (mu->mu_datasize > MAXPHYS) in mlx_user_command()
1748 kbuf = malloc(mu->mu_datasize, M_DEVBUF, M_WAITOK); in mlx_user_command()
1755 if ((mu->mu_bufdir & MU_XFER_OUT) != 0) { in mlx_user_command()
1756 rv = copyin(mu->mu_buf, kbuf, mu->mu_datasize); in mlx_user_command()
1765 rv = mlx_ccb_map(mlx, mc, kbuf, mu->mu_datasize, mu->mu_bufdir); in mlx_user_command()
1785 mu->mu_bufptr = 8; in mlx_user_command()
[all …]
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
H A Dsanitizer_mutex.h182 explicit GenericScopedLock(MutexType *mu) in GenericScopedLock() argument
183 : mu_(mu) { in GenericScopedLock()
201 explicit GenericScopedReadLock(MutexType *mu) in GenericScopedReadLock() argument
202 : mu_(mu) { in GenericScopedReadLock()
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_mutex.h180 explicit GenericScopedLock(MutexType *mu) in GenericScopedLock() argument
181 : mu_(mu) { in GenericScopedLock()
199 explicit GenericScopedReadLock(MutexType *mu) in GenericScopedReadLock() argument
200 : mu_(mu) { in GenericScopedReadLock()
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/
H A Drandom632 * p(\overrightarrow{x}|\overrightarrow{\mu },\Sigma) =
634 * e^{-\frac{1}{2}(\overrightarrow{x}-\overrightarrow{\mu})^\text{T}
635 * \Sigma ^{-1}(\overrightarrow{x}-\overrightarrow{\mu})}
638 * where @f$\overrightarrow{x}@f$ and @f$\overrightarrow{\mu}@f$ are
1225 * p(x|\mu,\omega) = \frac{2\mu^\mu}{\Gamma(\mu)\omega^\mu}
1226 * x^{2\mu-1}e^{-\mu x / \omega}
1228 * where @f$\Gamma(z)@f$ is the gamma function and @f$\mu >= 0.5@f$
1258 mu() const
1297 _M_gd(__p.mu(), __p.omega() / __p.mu())
1313 mu() const
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/
H A Drandom630 * p(\overrightarrow{x}|\overrightarrow{\mu },\Sigma) =
632 * e^{-\frac{1}{2}(\overrightarrow{x}-\overrightarrow{\mu})^\text{T}
633 * \Sigma ^{-1}(\overrightarrow{x}-\overrightarrow{\mu})}
636 * where @f$\overrightarrow{x}@f$ and @f$\overrightarrow{\mu}@f$ are
1223 * p(x|\mu,\omega) = \frac{2\mu^\mu}{\Gamma(\mu)\omega^\mu}
1224 * x^{2\mu-1}e^{-\mu x / \omega}
1226 * where @f$\Gamma(z)@f$ is the gamma function and @f$\mu >= 0.5@f$
1256 mu() const
1295 _M_gd(__p.mu(), __p.omega() / __p.mu())
1311 mu() const
[all …]
/netbsd-src/crypto/external/bsd/netpgp/dist/src/libbn/
H A Dbignum.c2627 mp_reduce (mp_int * x, mp_int * m, mp_int * mu) in mp_reduce() argument
2642 if ((res = mp_mul (&q, mu, &q)) != MP_OKAY) { in mp_reduce()
2646 if ((res = s_mp_mul_high_digs (&q, mu, &q, um)) != MP_OKAY) { in mp_reduce()
3279 mp_int M[TAB_SIZE], res, mu; in s_mp_exptmod() local
3320 if ((err = mp_init (&mu)) != MP_OKAY) { in s_mp_exptmod()
3325 if ((err = mp_reduce_setup (&mu, P)) != MP_OKAY) { in s_mp_exptmod()
3330 if ((err = mp_reduce_2k_setup_l (P, &mu)) != MP_OKAY) { in s_mp_exptmod()
3363 if ((err = redux (&M[1 << (winsize - 1)], P, &mu)) != MP_OKAY) { in s_mp_exptmod()
3375 if ((err = redux (&M[x], P, &mu)) != MP_OKAY) { in s_mp_exptmod()
3424 if ((err = redux (&res, P, &mu)) != MP_OKAY) { in s_mp_exptmod()
[all …]
/netbsd-src/external/gpl2/groff/dist/font/devps/generate/
H A Dsymbolchars9 multiply mu
48 mu *m
/netbsd-src/sbin/nvmectl/
H A Dbignum.c2584 mp_reduce(mp_int * x, mp_int * m, mp_int * mu) in mp_reduce() argument
2599 if ((res = signed_multiply(&q, mu, &q)) != MP_OKAY) { in mp_reduce()
2603 if ((res = basic_multiply_partial_upper(&q, mu, &q, um)) != MP_OKAY) { in mp_reduce()
3251 mp_int M[TAB_SIZE], res, mu; in basic_exponent_mod() local
3275 if ((err = mp_init(&mu)) != MP_OKAY) { in basic_exponent_mod()
3280 if ((err = mp_reduce_setup(&mu, P)) != MP_OKAY) { in basic_exponent_mod()
3285 if ((err = mp_reduce_2k_setup_l(P, &mu)) != MP_OKAY) { in basic_exponent_mod()
3318 if ((err = redux(&M[1 << (winsize - 1)], P, &mu)) != MP_OKAY) { in basic_exponent_mod()
3330 if ((err = redux(&M[x], P, &mu)) != MP_OKAY) { in basic_exponent_mod()
3379 if ((err = redux(&res, P, &mu)) != MP_OKAY) { in basic_exponent_mod()
[all …]
/netbsd-src/crypto/external/bsd/netpgp/dist/src/netpgpverify/
H A Dbignum.c2588 mp_reduce(mp_int * x, mp_int * m, mp_int * mu) in mp_reduce() argument
2603 if ((res = signed_multiply(&q, mu, &q)) != MP_OKAY) { in mp_reduce()
2607 if ((res = basic_multiply_partial_upper(&q, mu, &q, um)) != MP_OKAY) { in mp_reduce()
3255 mp_int M[TAB_SIZE], res, mu; in basic_exponent_mod() local
3279 if ((err = mp_init(&mu)) != MP_OKAY) { in basic_exponent_mod()
3284 if ((err = mp_reduce_setup(&mu, P)) != MP_OKAY) { in basic_exponent_mod()
3289 if ((err = mp_reduce_2k_setup_l(P, &mu)) != MP_OKAY) { in basic_exponent_mod()
3322 if ((err = redux(&M[1 << (winsize - 1)], P, &mu)) != MP_OKAY) { in basic_exponent_mod()
3334 if ((err = redux(&M[x], P, &mu)) != MP_OKAY) { in basic_exponent_mod()
3383 if ((err = redux(&res, P, &mu)) != MP_OKAY) { in basic_exponent_mod()
[all …]

12345678910