Home
last modified time | relevance | path

Searched refs:mu0 (Results 1 – 4 of 4) sorted by relevance

/third_party/abseil-cpp/absl/synchronization/
Dmutex_test.cc934 absl::Mutex mu0; // protects value, done member
963 x->mu0.LockWhen(absl::Condition(&ConditionWithAcquire, x));
965 x->mu0.Unlock();
981 x.mu0.Lock();
982 x.cv.WaitWithTimeout(&x.mu0, absl::Milliseconds(500)); // wake T
986 x.mu0.Unlock();
1001 x.mu0.LockWhen(absl::Condition(&x.done));
1002 x.mu0.Unlock();
1083 absl::Mutex mu0; local
1085 bool got_mu0 = mu0.TryLock();
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/synchronization/
Dmutex_test.cc968 absl::Mutex mu0; // protects value, done member
997 x->mu0.LockWhen(absl::Condition(&ConditionWithAcquire, x));
999 x->mu0.Unlock();
1015 x.mu0.Lock();
1016 x.cv.WaitWithTimeout(&x.mu0, absl::Milliseconds(500)); // wake T
1020 x.mu0.Unlock();
1035 x.mu0.LockWhen(absl::Condition(&x.done));
1036 x.mu0.Unlock();
1114 absl::Mutex mu0; local
1116 bool got_mu0 = mu0.TryLock();
[all …]
/third_party/boost/boost/math/tools/
Dunivariate_statistics.hpp37 Real mu0 = 0; in mean() local
45 Real tmp0 = (*it - mu0); in mean()
50 mu0 += tmp0*inv; in mean()
65 return (num1*(mu0+mu1+mu2) + num2*mu3)/Real(elements); in mean()
/third_party/boost/boost/math/statistics/
Dunivariate_statistics.hpp35 Real mu0 = 0; in mean() local
43 Real tmp0 = (*it - mu0); in mean()
48 mu0 += tmp0*inv; in mean()
63 return (num1*(mu0+mu1+mu2) + num2*mu3)/Real(elements); in mean()