Searched refs:mu (Results 1 - 25 of 31) sorted by relevance

12

/freebsd-11-stable/contrib/llvm-project/lld/Common/
H A DErrorHandler.cpp31 static std::mutex mu; variable
155 std::lock_guard<std::mutex> lock(mu);
160 std::lock_guard<std::mutex> lock(mu);
171 std::lock_guard<std::mutex> lock(mu);
194 std::lock_guard<std::mutex> lock(mu);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_mutex.h181 explicit GenericScopedLock(MutexType *mu) argument
182 : mu_(mu) {
200 explicit GenericScopedReadLock(MutexType *mu) argument
201 : mu_(mu) {
H A Dsanitizer_file.h34 StaticSpinMutex *mu; member in struct:__sanitizer::ReportFile
H A Dsanitizer_file.cpp37 mu->CheckLocked();
82 SpinMutexLock l(mu);
H A Dsanitizer_symbolizer_report.cpp45 SpinMutexLock l(mu);
H A Dsanitizer_rtems.cpp264 SpinMutexLock l(mu);
H A Dsanitizer_posix.cpp269 SpinMutexLock l(mu);
H A Dsanitizer_win.cpp841 SpinMutexLock l(mu);
/freebsd-11-stable/contrib/netbsd-tests/lib/libpthread/
H A Dt_once.c126 pthread_mutex_t *mu = m; local
128 PTHREAD_REQUIRE(pthread_mutex_unlock(mu));
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/
H A Dtsan_annotations.cpp31 int l, uptr mu) {}
57 AnnotateMutexIsUsedAsCondVar(const char *f, int l, uptr mu) {} argument
30 AnnotateMutexIsNotPHB(const char *f, int l, uptr mu) argument
H A Dtsan_annotations.h33 void AnnotateMutexIsNotPHB(const char *f, int l, uptr mu);
46 void AnnotateMutexIsUsedAsCondVar(const char *f, int l, uptr mu);
/freebsd-11-stable/contrib/ntp/ntpd/
H A Dntp_loopfilter.c64 * FREQ if (mu < 900) if (mu < 900) set freq direct
71 * SPIK SYNC if (mu < 900) adjust phase/freq
464 double mu; /* interval since last update */ local
571 mu = current_time - clock_epoch;
601 if (mu < clock_minstep)
614 if (mu < clock_minstep)
689 if (mu < clock_minstep)
714 / ( max(ULOGTOD(sys_poll), mu)
723 etemp = min(ULOGTOD(allan_xpt), mu);
[all...]
/freebsd-11-stable/sys/dev/mlx/
H A Dmlx.c116 struct mlx_usercommand *mu);
1999 struct mlx_usercommand *mu; local
2009 mu = (struct mlx_usercommand *)mc->mc_private;
2021 mu->mu_bufptr = 8;
2027 if (mu->mu_datasize > 0) {
2028 mc->mc_mailbox[mu->mu_bufptr ] = mc->mc_dataphys & 0xff;
2029 mc->mc_mailbox[mu->mu_bufptr + 1] = (mc->mc_dataphys >> 8) & 0xff;
2030 mc->mc_mailbox[mu->mu_bufptr + 2] = (mc->mc_dataphys >> 16) & 0xff;
2031 mc->mc_mailbox[mu->mu_bufptr + 3] = (mc->mc_dataphys >> 24) & 0xff;
2049 mlx_user_command(struct mlx_softc *sc, struct mlx_usercommand *mu) argument
[all...]
/freebsd-11-stable/contrib/wpa/src/crypto/
H A Dcrypto_wolfssl.c1477 mp_int mu; local
1486 ret = mp_init(&mu);
1490 ret = mp_montgomery_calc_normalization(&mu, modulus);
1492 mp_clear(&mu);
1496 if (!mp_isone(&mu)) {
1499 mp_clear(&mu);
1505 mp_clear(&mu);
1509 if (mp_mulmod(pa->x, &mu, modulus, ta->x) != MP_OKAY ||
1510 mp_mulmod(pa->y, &mu, modulus, ta->y) != MP_OKAY ||
1511 mp_mulmod(pa->z, &mu, modulu
[all...]
/freebsd-11-stable/contrib/wpa/src/tls/
H A Dlibtommath.c184 static int mp_reduce(mp_int * x, mp_int * m, mp_int * mu);
1885 mp_int M[TAB_SIZE], res, mu; local
1931 /* create mu, used for Barrett reduction */
1932 if ((err = mp_init (&mu)) != MP_OKAY) {
1937 if ((err = mp_reduce_setup (&mu, P)) != MP_OKAY) {
1942 if ((err = mp_reduce_2k_setup_l (P, &mu)) != MP_OKAY) {
1975 if ((err = redux (&M[1 << (winsize - 1)], P, &mu)) != MP_OKAY) {
1987 if ((err = redux (&M[x], P, &mu)) != MP_OKAY) {
2036 if ((err = redux (&res, P, &mu)) != MP_OKAY) {
2053 if ((err = redux (&res, P, &mu)) !
2258 mp_reduce(mp_int * x, mp_int * m, mp_int * mu) argument
2750 register mp_digit mu; local
[all...]
/freebsd-11-stable/sys/dev/hptiop/
H A Dhptiop.h344 struct hpt_iopmu_itl *mu; member in struct:hpt_iop_hba::__anon10126::__anon10127
348 struct hpt_iopmu_mv *mu; member in struct:hpt_iop_hba::__anon10126::__anon10128
352 struct hpt_iopmu_mvfrey *mu; member in struct:hpt_iop_hba::__anon10126::__anon10129
H A Dhptiop.c372 wakeup((void *)((unsigned long)hba->u.itl.mu + index));
477 ((char *)hba->u.itl.mu + req);
1105 req.header.context = req32 + (u_int64_t)(unsigned long)hba->u.itl.mu;
1123 if (hptiop_sleep(hba, (void *)((unsigned long)hba->u.itl.mu + req32),
1430 hba->u.itl.mu = (struct hpt_iopmu_itl *)
1433 if (!hba->u.itl.mu) {
1478 hba->u.mv.mu = (struct hpt_iopmu_mv *)rman_get_virtual(hba->bar2_res);
1480 if (!hba->u.mv.mu) {
1527 hba->u.mvfrey.mu =
1530 if (!hba->u.mvfrey.mu) {
[all...]
/freebsd-11-stable/sys/dev/sound/pci/
H A Dvibes.c727 u_long sdmaa, sdmac, ml, mu; local
806 mu = midi_start;
809 mu = games_start;
814 if ((mu - ml >= 0x800) ||
815 ((mu - ml) % 0x200)) {
/freebsd-11-stable/sys/dev/stg/
H A Dtmc18c30.c897 stghw_select_targ_wait(sc, mu)
899 int mu;
902 mu = mu / STGHW_SELECT_INTERVAL;
903 while (mu -- > 0)
/freebsd-11-stable/crypto/openssh/
H A Dsc25519.c18 static const crypto_uint32 mu[33] = {0x1B, 0x13, 0x2C, 0x0A, 0xA3, 0xE5, 0x9C, 0xED, 0xA7, 0x29, 0x63, 0x08, 0x5D, 0x21, 0x06, 0x21, variable
68 if(i+j >= 31) q2[i+j] += mu[i]*x[j+31];
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_interface_ann.cpp244 void INTERFACE_ATTRIBUTE AnnotateMutexIsNotPHB(char *f, int l, uptr mu) { argument
325 char *f, int l, uptr mu) {
324 AnnotateMutexIsUsedAsCondVar( char *f, int l, uptr mu) argument
/freebsd-11-stable/contrib/ntp/libntp/
H A Dntp_calendar.c1363 uint32_t mu, Q, sf32; local
1365 mu = (uint32_t)res.lo;
1366 Q = sf32 ^ ((sf32 ^ mu) / 12u);
1369 res.lo = mu - Q * 12u;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPInt.h1875 struct mu;
1876 mu magicu(unsigned LeadingZeros = 0) const;
2018 struct APInt::mu {
/freebsd-11-stable/sys/dev/sound/usb/
H A Duaudio.c445 {UA_FMT_MULAW, 8, AFMT_MU_LAW, "8-bit mu-Law"},
463 {UA20_FMT_MULAW, 8, AFMT_MU_LAW, "8-bit mu-Law"},
4033 const struct usb_audio_mixer_unit_0 *mu; member in union:__anon4
4058 len += sizeof(*u.mu);
4063 len += u.mu->bNrInPins;
4068 d1 = (const void *)(u.mu->baSourceId + u.mu->bNrInPins);
4169 const struct usb_audio20_mixer_unit_0 *mu; member in union:__anon5
4196 len += sizeof(*u.mu);
4200 len += u.mu
[all...]
/freebsd-11-stable/contrib/llvm-project/lld/ELF/
H A DInputSection.cpp148 static std::mutex mu; local
149 std::lock_guard<std::mutex> lock(mu);

Completed in 633 milliseconds

12