HomeSort by: relevance | last modified time | path
    Searched refs:mu (Results 1 - 25 of 89) sorted by relevancy

1 2 3 4

  /src/external/gpl2/gettext/dist/gettext-tools/tests/
msgunfmt-2 11 tmpfiles="$tmpfiles mu-2.in"
12 cat <<EOF > mu-2.in
18 tmpfiles="$tmpfiles mu-2.mo"
20 ${MSGFMT} -o mu-2.mo mu-2.in
23 tmpfiles="$tmpfiles mu-2.out"
25 ${MSGUNFMT} -o mu-2.out mu-2.mo
29 ${DIFF} mu-2.in mu-2.ou
    [all...]
msgunfmt-1 8 tmpfiles="$tmpfiles mu-test1.in"
9 cat <<EOF > mu-test1.in
35 tmpfiles="$tmpfiles mu-test1.mo"
37 ${MSGFMT} -o mu-test1.mo mu-test1.in
40 tmpfiles="$tmpfiles mu-test1.out"
42 ${MSGUNFMT} -o mu-test1.out mu-test1.mo
46 ${DIFF} mu-test1.in mu-test1.ou
    [all...]
msgunfmt-properties-1 8 tmpfiles="$tmpfiles mu-p-1.in"
9 cat <<EOF > mu-p-1.in
27 tmpfiles="$tmpfiles mu-p-1.mo"
29 ${MSGFMT} --properties-input -o mu-p-1.mo mu-p-1.in
32 tmpfiles="$tmpfiles mu-p-1.out"
34 ${MSGUNFMT} --properties-output -o mu-p-1.out mu-p-1.mo
38 ${DIFF} mu-p-1.in mu-p-1.ou
    [all...]
  /src/usr.sbin/mlxctl/
util.c 81 mlx_command(struct mlx_usercommand *mu, int bomb)
85 if ((rv = ioctl(mlxfd, MLX_COMMAND, mu)) != 0 && bomb)
87 mu->mu_command[0]);
95 struct mlx_usercommand mu; local
98 memset(&mu, 0, sizeof(mu));
100 mu.mu_datasize = sizeof(*enq);
101 mu.mu_buf = enq;
102 mu.mu_bufptr = 8;
103 mu.mu_bufdir = MU_XFER_IN
134 struct mlx_usercommand mu; local
150 struct mlx_usercommand mu; local
169 struct mlx_usercommand mu; local
    [all...]
  /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/
bn_mp_add_d.c 25 mp_digit *tmpa, *tmpc, mu; local
69 mu = *tmpc >> DIGIT_BIT;
74 *tmpc = *tmpa++ + mu;
75 mu = *tmpc >> DIGIT_BIT;
80 *tmpc++ = mu;
bn_mp_dr_reduce.c 39 mp_digit mu, *tmpx1, *tmpx2; local
63 mu = 0;
67 r = ((mp_word)*tmpx2++) * ((mp_word)k) + *tmpx1 + mu;
69 mu = (mp_digit)(r >> ((mp_word)DIGIT_BIT));
73 *tmpx1++ = mu;
bn_s_mp_exptmod.c 27 mp_int M[TAB_SIZE], res, mu; local
73 /* create mu, used for Barrett reduction */
74 if ((err = mp_init (&mu)) != MP_OKAY) {
79 if ((err = mp_reduce_setup (&mu, P)) != MP_OKAY) {
84 if ((err = mp_reduce_2k_setup_l (P, &mu)) != MP_OKAY) {
117 if ((err = redux (&M[1 << (winsize - 1)], P, &mu)) != MP_OKAY) {
129 if ((err = redux (&M[x], P, &mu)) != MP_OKAY) {
178 if ((err = redux (&res, P, &mu)) != MP_OKAY) {
195 if ((err = redux (&res, P, &mu)) != MP_OKAY) {
204 if ((err = redux (&res, P, &mu)) != MP_OKAY)
    [all...]
bn_mp_reduce.c 20 /* reduces x mod m, assumes 0 < x < m**2, mu is
24 int mp_reduce (mp_int * x, mp_int * m, mp_int * mu)
39 if ((res = mp_mul (&q, mu, &q)) != MP_OKAY) {
44 if ((res = s_mp_mul_high_digs (&q, mu, &q, um)) != MP_OKAY) {
48 if ((res = fast_s_mp_mul_high_digs (&q, mu, &q, um)) != MP_OKAY) {
bn_mp_sub_d.c 24 mp_digit *tmpa, *tmpc, mu; local
72 mu = *tmpc >> (sizeof(mp_digit) * CHAR_BIT - 1);
77 *tmpc = *tmpa++ - mu;
78 mu = *tmpc >> (sizeof(mp_digit) * CHAR_BIT - 1);
bn_mp_montgomery_reduce.c 25 mp_digit mu; local
49 /* mu = ai * rho mod b
57 mu = (mp_digit) (((mp_word)x->dp[ix]) * ((mp_word)rho) & MP_MASK);
59 /* a = a + mu * m * b**i */
77 r = ((mp_word)mu) * ((mp_word)*tmpn++) +
bn_fast_mp_montgomery_reduce.c 71 /* mu = ai * m' mod b
77 register mp_digit mu; local
78 mu = (mp_digit) (((W[ix] & MP_MASK) * rho) & MP_MASK);
80 /* a = a + mu * m * b**i
107 *_W++ += ((mp_word)mu) * ((mp_word)*tmpn++);
  /src/external/bsd/jemalloc.old/dist/include/jemalloc/internal/
lockedint.h 29 # define LOCKEDINT_MTX_INIT(mu, name, rank, rank_mode) \
30 malloc_mutex_init(&(mu), name, rank, rank_mode)
32 # define LOCKEDINT_MTX_LOCK(tsdn, mu) malloc_mutex_lock(tsdn, &(mu))
33 # define LOCKEDINT_MTX_UNLOCK(tsdn, mu) malloc_mutex_unlock(tsdn, &(mu))
34 # define LOCKEDINT_MTX_PREFORK(tsdn, mu) malloc_mutex_prefork(tsdn, &(mu))
35 # define LOCKEDINT_MTX_POSTFORK_PARENT(tsdn, mu) \
36 malloc_mutex_postfork_parent(tsdn, &(mu))
    [all...]
  /src/external/bsd/jemalloc.old/include/jemalloc/internal/
lockedint.h 29 # define LOCKEDINT_MTX_INIT(mu, name, rank, rank_mode) \
30 malloc_mutex_init(&(mu), name, rank, rank_mode)
32 # define LOCKEDINT_MTX_LOCK(tsdn, mu) malloc_mutex_lock(tsdn, &(mu))
33 # define LOCKEDINT_MTX_UNLOCK(tsdn, mu) malloc_mutex_unlock(tsdn, &(mu))
34 # define LOCKEDINT_MTX_PREFORK(tsdn, mu) malloc_mutex_prefork(tsdn, &(mu))
35 # define LOCKEDINT_MTX_POSTFORK_PARENT(tsdn, mu) \
36 malloc_mutex_postfork_parent(tsdn, &(mu))
    [all...]
  /src/external/bsd/jemalloc/dist/include/jemalloc/internal/
lockedint.h 34 # define LOCKEDINT_MTX_INIT(mu, name, rank, rank_mode) \
35 malloc_mutex_init(&(mu), name, rank, rank_mode)
37 # define LOCKEDINT_MTX_LOCK(tsdn, mu) malloc_mutex_lock(tsdn, &(mu))
38 # define LOCKEDINT_MTX_UNLOCK(tsdn, mu) malloc_mutex_unlock(tsdn, &(mu))
39 # define LOCKEDINT_MTX_PREFORK(tsdn, mu) \
40 malloc_mutex_prefork(tsdn, &(mu))
41 # define LOCKEDINT_MTX_POSTFORK_PARENT(tsdn, mu) \
42 malloc_mutex_postfork_parent(tsdn, &(mu))
    [all...]
  /src/external/bsd/jemalloc/include/jemalloc/internal/
lockedint.h 34 # define LOCKEDINT_MTX_INIT(mu, name, rank, rank_mode) \
35 malloc_mutex_init(&(mu), name, rank, rank_mode)
37 # define LOCKEDINT_MTX_LOCK(tsdn, mu) malloc_mutex_lock(tsdn, &(mu))
38 # define LOCKEDINT_MTX_UNLOCK(tsdn, mu) malloc_mutex_unlock(tsdn, &(mu))
39 # define LOCKEDINT_MTX_PREFORK(tsdn, mu) \
40 malloc_mutex_prefork(tsdn, &(mu))
41 # define LOCKEDINT_MTX_POSTFORK_PARENT(tsdn, mu) \
42 malloc_mutex_postfork_parent(tsdn, &(mu))
    [all...]
  /src/external/mit/isl/dist/
basis_reduction_templ.c 65 isl_int mu[2]; local
94 isl_int_init(mu[0]);
95 isl_int_init(mu[1]);
182 GBR_floor(mu[0], alpha);
183 GBR_ceil(mu[1], alpha);
185 if (isl_int_eq(mu[0], mu[1]))
186 isl_int_set(tmp, mu[0]);
191 isl_int_set(tmp, mu[j]);
210 isl_int_set(tmp, mu[j])
    [all...]
  /src/external/gpl2/groff/dist/font/devps/generate/
lgreekmap 14 mu *m
symbolchars 9 multiply mu
23 Mu *M
48 mu *m
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_mutex.h 388 explicit GenericScopedLock(MutexType *mu) SANITIZER_ACQUIRE(mu) : mu_(mu) {
404 explicit GenericScopedReadLock(MutexType *mu) SANITIZER_ACQUIRE(mu)
405 : mu_(mu) {
421 ALWAYS_INLINE explicit GenericScopedRWLock(MutexType *mu, bool write)
422 SANITIZER_ACQUIRE(mu)
423 : mu_(mu), write_(write) {
sanitizer_file.h 35 StaticSpinMutex *mu; member in struct:__sanitizer::ReportFile
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_mutex.h 372 explicit GenericScopedLock(MutexType *mu) ACQUIRE(mu) : mu_(mu) {
388 explicit GenericScopedReadLock(MutexType *mu) ACQUIRE(mu) : mu_(mu) {
404 ALWAYS_INLINE explicit GenericScopedRWLock(MutexType *mu, bool write)
405 ACQUIRE(mu)
406 : mu_(mu), write_(write) {
sanitizer_file.h 35 StaticSpinMutex *mu; member in struct:__sanitizer::ReportFile
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_mutex.h 182 explicit GenericScopedLock(MutexType *mu)
183 : mu_(mu) {
201 explicit GenericScopedReadLock(MutexType *mu)
202 : mu_(mu) {
sanitizer_file.h 35 StaticSpinMutex *mu; member in struct:__sanitizer::ReportFile
  /src/crypto/external/apache2/openssl/dist/providers/implementations/signature/
ml_dsa_sig.c 56 int mu; /* Flag indicating we should begin from \mu, not the message */ member in struct:__anon593
146 ctx->mu = 0;
168 ctx->mu = 0;
199 ret = ossl_ml_dsa_sign(ctx->key, ctx->mu, msg, msg_len,
227 return ossl_ml_dsa_verify(ctx->key, ctx->mu, msg, msg_len,
281 if (p != NULL && !OSSL_PARAM_get_int(p, &pctx->mu))

Completed in 26 milliseconds

1 2 3 4