| /external/rust/crates/grpcio-sys/grpc/src/core/lib/gpr/ |
| D | sync_abseil.cc | 43 void gpr_mu_init(gpr_mu* mu) { in gpr_mu_init() 49 void gpr_mu_destroy(gpr_mu* mu) { in gpr_mu_destroy() 53 void gpr_mu_lock(gpr_mu* mu) ABSL_NO_THREAD_SAFETY_ANALYSIS { in gpr_mu_lock() 58 void gpr_mu_unlock(gpr_mu* mu) ABSL_NO_THREAD_SAFETY_ANALYSIS { in gpr_mu_unlock() 63 int gpr_mu_trylock(gpr_mu* mu) { in gpr_mu_trylock() 80 int gpr_cv_wait(gpr_cv* cv, gpr_mu* mu, gpr_timespec abs_deadline) { in gpr_cv_wait()
|
| D | sync_posix.cc | 40 void gpr_mu_init(gpr_mu* mu) { in gpr_mu_init() 50 void gpr_mu_destroy(gpr_mu* mu) { in gpr_mu_destroy() 59 void gpr_mu_lock(gpr_mu* mu) { in gpr_mu_lock() 71 void gpr_mu_unlock(gpr_mu* mu) { in gpr_mu_unlock() 80 int gpr_mu_trylock(gpr_mu* mu) { in gpr_mu_trylock() 119 int gpr_cv_wait(gpr_cv* cv, gpr_mu* mu, gpr_timespec abs_deadline) { in gpr_cv_wait()
|
| D | sync_windows.cc | 30 void gpr_mu_init(gpr_mu* mu) { in gpr_mu_init() 35 void gpr_mu_destroy(gpr_mu* mu) { DeleteCriticalSection(&mu->cs); } in gpr_mu_destroy() 37 void gpr_mu_lock(gpr_mu* mu) { in gpr_mu_lock() 43 void gpr_mu_unlock(gpr_mu* mu) { in gpr_mu_unlock() 48 int gpr_mu_trylock(gpr_mu* mu) { in gpr_mu_trylock() 68 int gpr_cv_wait(gpr_cv* cv, gpr_mu* mu, gpr_timespec abs_deadline) { in gpr_cv_wait()
|
| /external/grpc-grpc/src/core/lib/gpr/ |
| D | sync_posix.cc | 36 void gpr_mu_init(gpr_mu* mu) { in gpr_mu_init() 40 void gpr_mu_destroy(gpr_mu* mu) { GPR_ASSERT(pthread_mutex_destroy(mu) == 0); } in gpr_mu_destroy() 42 void gpr_mu_lock(gpr_mu* mu) { in gpr_mu_lock() 50 void gpr_mu_unlock(gpr_mu* mu) { in gpr_mu_unlock() 55 int gpr_mu_trylock(gpr_mu* mu) { in gpr_mu_trylock() 75 int gpr_cv_wait(gpr_cv* cv, gpr_mu* mu, gpr_timespec abs_deadline) { in gpr_cv_wait()
|
| D | sync_windows.cc | 29 void gpr_mu_init(gpr_mu* mu) { in gpr_mu_init() 34 void gpr_mu_destroy(gpr_mu* mu) { DeleteCriticalSection(&mu->cs); } in gpr_mu_destroy() 36 void gpr_mu_lock(gpr_mu* mu) { in gpr_mu_lock() 42 void gpr_mu_unlock(gpr_mu* mu) { in gpr_mu_unlock() 47 int gpr_mu_trylock(gpr_mu* mu) { in gpr_mu_trylock() 67 int gpr_cv_wait(gpr_cv* cv, gpr_mu* mu, gpr_timespec abs_deadline) { in gpr_cv_wait()
|
| /external/cronet/third_party/abseil-cpp/absl/synchronization/ |
| D | mutex.h | 550 explicit MutexLock(Mutex *mu) ABSL_EXCLUSIVE_LOCK_FUNCTION(mu) : mu_(mu) { in MutexLock() 557 explicit MutexLock(Mutex *mu, const Condition &cond) in MutexLock() 580 explicit ReaderMutexLock(Mutex *mu) ABSL_SHARED_LOCK_FUNCTION(mu) : mu_(mu) { in ReaderMutexLock() 584 explicit ReaderMutexLock(Mutex *mu, const Condition &cond) in ReaderMutexLock() 607 explicit WriterMutexLock(Mutex *mu) ABSL_EXCLUSIVE_LOCK_FUNCTION(mu) in WriterMutexLock() 612 explicit WriterMutexLock(Mutex *mu, const Condition &cond) in WriterMutexLock() 933 explicit MutexLockMaybe(Mutex *mu) ABSL_EXCLUSIVE_LOCK_FUNCTION(mu) in MutexLockMaybe() 940 explicit MutexLockMaybe(Mutex *mu, const Condition &cond) in MutexLockMaybe() 966 explicit ReleasableMutexLock(Mutex *mu) ABSL_EXCLUSIVE_LOCK_FUNCTION(mu) in ReleasableMutexLock() 971 explicit ReleasableMutexLock(Mutex *mu, const Condition &cond) in ReleasableMutexLock()
|
| D | mutex_benchmark.cc | 30 static absl::Mutex* mu = new absl::Mutex; in BM_Mutex() local 49 explicit RaiiLocker(MutexType* mu) : mu_(mu) { mu_->Lock(); } in RaiiLocker() 58 explicit RaiiLocker(std::mutex* mu) : mu_(mu) { mu_->lock(); } in RaiiLocker() 103 absl::Mutex mu; in BM_MutexEnqueue() member 183 MutexType mu; in BM_Contended() member 275 absl::Mutex mu; in BM_ConditionWaiters() local
|
| /external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/synchronization/ |
| D | mutex.h | 525 explicit MutexLock(Mutex *mu) ABSL_EXCLUSIVE_LOCK_FUNCTION(mu) : mu_(mu) { in MutexLock() 532 explicit MutexLock(Mutex *mu, const Condition &cond) in MutexLock() 555 explicit ReaderMutexLock(Mutex *mu) ABSL_SHARED_LOCK_FUNCTION(mu) : mu_(mu) { in ReaderMutexLock() 559 explicit ReaderMutexLock(Mutex *mu, const Condition &cond) in ReaderMutexLock() 582 explicit WriterMutexLock(Mutex *mu) ABSL_EXCLUSIVE_LOCK_FUNCTION(mu) in WriterMutexLock() 587 explicit WriterMutexLock(Mutex *mu, const Condition &cond) in WriterMutexLock() 876 explicit MutexLockMaybe(Mutex *mu) ABSL_EXCLUSIVE_LOCK_FUNCTION(mu) in MutexLockMaybe() 883 explicit MutexLockMaybe(Mutex *mu, const Condition &cond) in MutexLockMaybe() 909 explicit ReleasableMutexLock(Mutex *mu) ABSL_EXCLUSIVE_LOCK_FUNCTION(mu) in ReleasableMutexLock() 914 explicit ReleasableMutexLock(Mutex *mu, const Condition &cond) in ReleasableMutexLock()
|
| D | mutex_benchmark.cc | 30 static absl::Mutex* mu = new absl::Mutex; in BM_Mutex() local 49 explicit RaiiLocker(MutexType* mu) : mu_(mu) { mu_->Lock(); } in RaiiLocker() 58 explicit RaiiLocker(std::mutex* mu) : mu_(mu) { mu_->lock(); } in RaiiLocker() 103 absl::Mutex mu; in BM_MutexEnqueue() member 183 MutexType mu; in BM_Contended() member 275 absl::Mutex mu; in BM_ConditionWaiters() local
|
| /external/angle/third_party/abseil-cpp/absl/synchronization/ |
| D | mutex.h | 551 explicit MutexLock(Mutex* mu) ABSL_EXCLUSIVE_LOCK_FUNCTION(mu) : mu_(mu) { in MutexLock() 558 explicit MutexLock(Mutex* mu, const Condition& cond) in MutexLock() 581 explicit ReaderMutexLock(Mutex* mu) ABSL_SHARED_LOCK_FUNCTION(mu) : mu_(mu) { in ReaderMutexLock() 585 explicit ReaderMutexLock(Mutex* mu, const Condition& cond) in ReaderMutexLock() 608 explicit WriterMutexLock(Mutex* mu) ABSL_EXCLUSIVE_LOCK_FUNCTION(mu) in WriterMutexLock() 613 explicit WriterMutexLock(Mutex* mu, const Condition& cond) in WriterMutexLock() 959 explicit MutexLockMaybe(Mutex* mu) ABSL_EXCLUSIVE_LOCK_FUNCTION(mu) in MutexLockMaybe() 966 explicit MutexLockMaybe(Mutex* mu, const Condition& cond) in MutexLockMaybe() 994 explicit ReleasableMutexLock(Mutex* mu) ABSL_EXCLUSIVE_LOCK_FUNCTION(mu) in ReleasableMutexLock() 999 explicit ReleasableMutexLock(Mutex* mu, const Condition& cond) in ReleasableMutexLock()
|
| D | mutex_benchmark.cc | 30 static absl::Mutex* mu = new absl::Mutex; in BM_Mutex() local 49 explicit RaiiLocker(MutexType* mu) : mu_(mu) { mu_->Lock(); } in RaiiLocker() 58 explicit RaiiLocker(std::mutex* mu) : mu_(mu) { mu_->lock(); } in RaiiLocker() 103 absl::Mutex mu; in BM_MutexEnqueue() member 183 MutexType mu; in BM_Contended() member 275 absl::Mutex mu; in BM_ConditionWaiters() local
|
| /external/webrtc/third_party/abseil-cpp/absl/synchronization/ |
| D | mutex.h | 532 explicit MutexLock(Mutex *mu) ABSL_EXCLUSIVE_LOCK_FUNCTION(mu) : mu_(mu) { in MutexLock() 539 explicit MutexLock(Mutex *mu, const Condition &cond) in MutexLock() 562 explicit ReaderMutexLock(Mutex *mu) ABSL_SHARED_LOCK_FUNCTION(mu) : mu_(mu) { in ReaderMutexLock() 566 explicit ReaderMutexLock(Mutex *mu, const Condition &cond) in ReaderMutexLock() 589 explicit WriterMutexLock(Mutex *mu) ABSL_EXCLUSIVE_LOCK_FUNCTION(mu) in WriterMutexLock() 594 explicit WriterMutexLock(Mutex *mu, const Condition &cond) in WriterMutexLock() 883 explicit MutexLockMaybe(Mutex *mu) ABSL_EXCLUSIVE_LOCK_FUNCTION(mu) in MutexLockMaybe() 890 explicit MutexLockMaybe(Mutex *mu, const Condition &cond) in MutexLockMaybe() 916 explicit ReleasableMutexLock(Mutex *mu) ABSL_EXCLUSIVE_LOCK_FUNCTION(mu) in ReleasableMutexLock() 921 explicit ReleasableMutexLock(Mutex *mu, const Condition &cond) in ReleasableMutexLock()
|
| /external/abseil-cpp/absl/synchronization/ |
| D | mutex.h | 532 explicit MutexLock(Mutex *mu) ABSL_EXCLUSIVE_LOCK_FUNCTION(mu) : mu_(mu) { in MutexLock() 539 explicit MutexLock(Mutex *mu, const Condition &cond) in MutexLock() 562 explicit ReaderMutexLock(Mutex *mu) ABSL_SHARED_LOCK_FUNCTION(mu) : mu_(mu) { in ReaderMutexLock() 566 explicit ReaderMutexLock(Mutex *mu, const Condition &cond) in ReaderMutexLock() 589 explicit WriterMutexLock(Mutex *mu) ABSL_EXCLUSIVE_LOCK_FUNCTION(mu) in WriterMutexLock() 594 explicit WriterMutexLock(Mutex *mu, const Condition &cond) in WriterMutexLock() 883 explicit MutexLockMaybe(Mutex *mu) ABSL_EXCLUSIVE_LOCK_FUNCTION(mu) in MutexLockMaybe() 890 explicit MutexLockMaybe(Mutex *mu, const Condition &cond) in MutexLockMaybe() 916 explicit ReleasableMutexLock(Mutex *mu) ABSL_EXCLUSIVE_LOCK_FUNCTION(mu) in ReleasableMutexLock() 921 explicit ReleasableMutexLock(Mutex *mu, const Condition &cond) in ReleasableMutexLock()
|
| /external/openscreen/third_party/abseil/src/absl/synchronization/ |
| D | mutex.h | 527 explicit MutexLock(Mutex *mu) ABSL_EXCLUSIVE_LOCK_FUNCTION(mu) : mu_(mu) { in MutexLock() 534 explicit MutexLock(Mutex *mu, const Condition &cond) in MutexLock() 557 explicit ReaderMutexLock(Mutex *mu) ABSL_SHARED_LOCK_FUNCTION(mu) : mu_(mu) { in ReaderMutexLock() 561 explicit ReaderMutexLock(Mutex *mu, const Condition &cond) in ReaderMutexLock() 584 explicit WriterMutexLock(Mutex *mu) ABSL_EXCLUSIVE_LOCK_FUNCTION(mu) in WriterMutexLock() 589 explicit WriterMutexLock(Mutex *mu, const Condition &cond) in WriterMutexLock() 878 explicit MutexLockMaybe(Mutex *mu) ABSL_EXCLUSIVE_LOCK_FUNCTION(mu) in MutexLockMaybe() 885 explicit MutexLockMaybe(Mutex *mu, const Condition &cond) in MutexLockMaybe() 911 explicit ReleasableMutexLock(Mutex *mu) ABSL_EXCLUSIVE_LOCK_FUNCTION(mu) in ReleasableMutexLock() 916 explicit ReleasableMutexLock(Mutex *mu, const Condition &cond) in ReleasableMutexLock()
|
| D | mutex_benchmark.cc | 30 static absl::Mutex* mu = new absl::Mutex; in BM_Mutex() local 49 explicit RaiiLocker(MutexType* mu) : mu_(mu) { mu_->Lock(); } in RaiiLocker() 58 explicit RaiiLocker(std::mutex* mu) : mu_(mu) { mu_->lock(); } in RaiiLocker() 67 MutexType mu; in BM_Contended() member 189 absl::Mutex mu; in BM_ConditionWaiters() local
|
| /external/tensorflow/third_party/absl/abseil-cpp/absl/synchronization/ |
| D | mutex.h | 532 explicit MutexLock(Mutex *mu) ABSL_EXCLUSIVE_LOCK_FUNCTION(mu) : mu_(mu) { in MutexLock() 539 explicit MutexLock(Mutex *mu, const Condition &cond) in MutexLock() 562 explicit ReaderMutexLock(Mutex *mu) ABSL_SHARED_LOCK_FUNCTION(mu) : mu_(mu) { in ReaderMutexLock() 566 explicit ReaderMutexLock(Mutex *mu, const Condition &cond) in ReaderMutexLock() 589 explicit WriterMutexLock(Mutex *mu) ABSL_EXCLUSIVE_LOCK_FUNCTION(mu) in WriterMutexLock() 594 explicit WriterMutexLock(Mutex *mu, const Condition &cond) in WriterMutexLock() 883 explicit MutexLockMaybe(Mutex *mu) ABSL_EXCLUSIVE_LOCK_FUNCTION(mu) in MutexLockMaybe() 890 explicit MutexLockMaybe(Mutex *mu, const Condition &cond) in MutexLockMaybe() 916 explicit ReleasableMutexLock(Mutex *mu) ABSL_EXCLUSIVE_LOCK_FUNCTION(mu) in ReleasableMutexLock() 921 explicit ReleasableMutexLock(Mutex *mu, const Condition &cond) in ReleasableMutexLock()
|
| /external/rust/crates/grpcio-sys/grpc/src/core/lib/gprpp/ |
| D | sync.h | 149 static void WaitUntil(CondVar* cv, Mutex* mu, Predicate pred) { in WaitUntil() 157 static bool WaitUntilWithTimeout(CondVar* cv, Mutex* mu, Predicate pred, in WaitUntilWithTimeout() 167 static bool WaitUntilWithDeadline(CondVar* cv, Mutex* mu, Predicate pred, in WaitUntilWithDeadline() 178 explicit MutexLockForGprMu(gpr_mu* mu) : mu_(mu) { gpr_mu_lock(mu_); } in MutexLockForGprMu() 191 explicit LockableAndReleasableMutexLock(Mutex* mu) in LockableAndReleasableMutexLock()
|
| /external/libtextclassifier/abseil-cpp/absl/synchronization/ |
| D | mutex_benchmark.cc | 30 static absl::Mutex* mu = new absl::Mutex; in BM_Mutex() local 49 explicit RaiiLocker(MutexType* mu) : mu_(mu) { mu_->Lock(); } in RaiiLocker() 58 explicit RaiiLocker(std::mutex* mu) : mu_(mu) { mu_->lock(); } in RaiiLocker() 67 MutexType mu; in BM_Contended() member 189 absl::Mutex mu; in BM_ConditionWaiters() local
|
| /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/inference/ |
| D | TTest.java | 157 double t(double mu, double[] observed) in t() 175 double t(double mu, StatisticalSummary sampleStats) in t() 342 double tTest(double mu, double[] sample) in tTest() 379 boolean tTest(double mu, double[] sample, double alpha) in tTest() 409 double tTest(double mu, StatisticalSummary sampleStats) in tTest() 448 double mu, in tTest()
|
| /external/libchromeos-rs/src/sync/ |
| D | cv.rs | 58 mu: UnsafeCell<usize>, field 126 let mu = guard.into_inner(); in wait() localVariable 150 let mu = guard.into_inner(); in wait_read() localVariable 175 let mu = unsafe { &mut *self.mu.get() }; in add_waiter() localVariable 512 let mu = Arc::new(Mutex::new(())); in notify_one() localVariable 532 let mu = Arc::new(Mutex::new(false)); in multi_mutex() localVariable 537 let mu = mu.clone(); in multi_mutex() localVariable 603 let mu = Rc::new(Mutex::new(())); in notify_one_single_thread_async() localVariable 635 let mu = Arc::new(Mutex::new(())); in notify_one_multi_thread_async() localVariable 712 let mu = Arc::new(Mutex::new(0usize)); in notify_one_with_cancel() localVariable [all …]
|
| D | mu.rs | 937 mu: &'a Mutex<T>, field 975 mu: &'a Mutex<T>, field 1037 let mu = Mutex::new(NonCopy(13)); in it_works() localVariable 1044 let mu = Mutex::new(NonCopy(7)); in smoke() localVariable 1052 let mu = Mutex::new(NonCopy(7)); in rw_smoke() localVariable 1078 let mu = Rc::new(Mutex::new(NonCopy(7))); in async_smoke() localVariable 1101 let mu = Mutex::new(NonCopy(19)); in send() localVariable 1114 let mu = Mutex::new(1); in arc_nested() localVariable 1165 let mu = Arc::new(Mutex::new(0usize)); in high_contention() localVariable 1200 let mu = Arc::new(Mutex::new(0usize)); in high_contention_with_cancel() localVariable [all …]
|
| /external/crosvm/cros_async/src/sync/ |
| D | cv.rs | 70 mu: UnsafeCell<usize>, field 141 let mu = guard.into_inner(); in wait() localVariable 165 let mu = guard.into_inner(); in wait_read() localVariable 194 let mu = unsafe { &mut *self.mu.get() }; in add_waiter() localVariable 500 let mu = Arc::new(Mutex::new(())); in notify_one() localVariable 520 let mu = Arc::new(Mutex::new(false)); in multi_mutex() localVariable 525 let mu = mu.clone(); in multi_mutex() localVariable 590 let mu = Rc::new(Mutex::new(())); in notify_one_single_thread_async() localVariable 622 let mu = Arc::new(Mutex::new(())); in notify_one_multi_thread_async() localVariable 699 let mu = Arc::new(Mutex::new(0usize)); in notify_one_with_cancel() localVariable [all …]
|
| D | mu.rs | 821 mu: &'a Mutex<T>, field 859 mu: &'a Mutex<T>, field 932 let mu = Mutex::new(NonCopy(13)); in it_works() localVariable 939 let mu = Mutex::new(NonCopy(7)); in smoke() localVariable 947 let mu = Mutex::new(NonCopy(7)); in rw_smoke() localVariable 973 let mu = Rc::new(Mutex::new(NonCopy(7))); in async_smoke() localVariable 996 let mu = Mutex::new(NonCopy(19)); in send() localVariable 1009 let mu = Mutex::new(1); in arc_nested() localVariable 1060 let mu = Arc::new(Mutex::new(0usize)); in high_contention() localVariable 1095 let mu = Arc::new(Mutex::new(0usize)); in high_contention_with_cancel() localVariable [all …]
|
| /external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/ |
| D | MethodsResolutionLogicTest.java | 58 …MethodUsage mu = constructorDeclaration.getAllMethods().stream().filter(m -> m.getDeclaration().ge… in compatibilityShouldConsiderAlsoTypeVariablesNegative() local 68 …MethodUsage mu = constructorDeclaration.getAllMethods().stream().filter(m -> m.getDeclaration().ge… in compatibilityShouldConsiderAlsoTypeVariablesRaw() local 80 …MethodUsage mu = constructorDeclaration.getAllMethods().stream().filter(m -> m.getDeclaration().ge… in compatibilityShouldConsiderAlsoTypeVariablesPositive() local
|
| /external/tensorflow/tensorflow/core/platform/ |
| D | mutex.h | 149 explicit mutex_lock(mutex_type& mu) TF_EXCLUSIVE_LOCK_FUNCTION(mu) in mutex_lock() 154 mutex_lock(mutex_type& mu, std::try_to_lock_t) TF_EXCLUSIVE_LOCK_FUNCTION(mu) in mutex_lock() 189 explicit tf_shared_lock(mutex_type& mu) TF_SHARED_LOCK_FUNCTION(mu) in tf_shared_lock() 194 tf_shared_lock(mutex_type& mu, std::try_to_lock_t) TF_SHARED_LOCK_FUNCTION(mu) in tf_shared_lock() 248 inline ConditionResult WaitForMilliseconds(mutex_lock* mu, in WaitForMilliseconds()
|