/external/clang/test/Sema/ |
D | warn-thread-safety-analysis.c | 42 struct Mutex mu1; variable 43 struct Mutex mu2 ACQUIRED_AFTER(mu1); 44 struct Foo foo_ = {&mu1}; 51 int Foo_fun1(int i) SHARED_LOCKS_REQUIRED(mu2) EXCLUSIVE_LOCKS_REQUIRED(mu1) { in Foo_fun1() 55 int Foo_fun2(int i) EXCLUSIVE_LOCKS_REQUIRED(mu2) SHARED_LOCKS_REQUIRED(mu1) { in Foo_fun2() 59 int Foo_func3(int i) LOCKS_EXCLUDED(mu1, mu2) { in Foo_func3() 63 static int Bar_fun1(int i) EXCLUSIVE_LOCKS_REQUIRED(mu1) { in Bar_fun1() 80 mutex_exclusive_lock(&mu1); in main() 84 mutex_shared_lock(&mu1); // expected-warning{{acquiring mutex 'mu1' that is already held}} in main() 85 mutex_unlock(&mu1); in main() [all …]
|
/external/clang/test/SemaCXX/ |
D | warn-thread-safety-parsing.cpp | 63 Mutex mu1; variable 70 Mutex& muRef = mu1; 308 int gb_var_arg GUARDED_BY(mu1); 312 int gb_var_args __attribute__((guarded_by(mu1, mu2))); // \ 322 int gb_field_args GUARDED_BY(mu1); 325 class GUARDED_BY(mu1) GB { // \ in GUARDED_BY() argument 329 void gb_function() GUARDED_BY(mu1); // \ 332 void gb_function_params(int gv_lvar GUARDED_BY(mu1)); // \ 336 int x GUARDED_BY(mu1) = y; // \ in gb_testfn() 348 int gb_var_arg_5 GUARDED_BY(&mu1); [all …]
|
D | warn-thread-safety-analysis.cpp | 888 Mutex mu1; variable 889 Mutex mu2 ACQUIRED_AFTER(mu1); 893 int method1(int i) SHARED_LOCKS_REQUIRED(mu2) EXCLUSIVE_LOCKS_REQUIRED(mu1); 901 int foo(int i) EXCLUSIVE_LOCKS_REQUIRED(mu2) SHARED_LOCKS_REQUIRED(mu1); 906 static int bar(int i) EXCLUSIVE_LOCKS_REQUIRED(mu1); 914 mu1.Lock(); in main() 920 mu1.Unlock(); in main() 1051 int method1(int i) SHARED_LOCKS_REQUIRED(mu1, mu, mu2); 1052 int data GUARDED_BY(mu1); 1053 Mutex *mu1; member in thread_annot_lock_66_modified::Foo [all …]
|
/external/compiler-rt/test/tsan/ |
D | mutex_cycle2.c | 13 pthread_mutex_t mu1, mu2; in main() local 14 pthread_mutex_init(&mu1, NULL); in main() 18 pthread_mutex_lock(&mu1); in main() 21 pthread_mutex_unlock(&mu1); in main() 25 pthread_mutex_lock(&mu1); in main() 29 pthread_mutex_unlock(&mu1); in main() 32 pthread_mutex_destroy(&mu1); in main()
|
/external/clang/test/SemaObjC/ |
D | warn-thread-safety-analysis.m | 5 struct Mutex mu1; 7 int Foo_fun1(int i) __attribute__ ((exclusive_locks_required((mu1)))) { 16 …Foo_fun1(1); // expected-warning{{calling function 'Foo_fun1' requires holding mutex 'mu1' exclusi…
|
/external/clang/test/Misc/ |
D | ast-dump-attr.cpp | 45 } mu1, mu2; variable 46 int TestExpr __attribute__((guarded_by(mu1))); 51 class Mutex TestVariadicExpr __attribute__((acquired_after(mu1, mu2)));
|
D | ast-dump-color.cpp | 25 } mu1, mu2; variable 26 int TestExpr __attribute__((guarded_by(mu1)));
|
/external/opencv/cv/src/ |
D | cvthresh.cpp | 211 double mu1 = 0, q1 = 0; in icvGetThreshVal_Otsu() local 253 mu1 = 0; in icvGetThreshVal_Otsu() 261 mu1 *= q1; in icvGetThreshVal_Otsu() 273 mu1 = (mu1 + val_i*p_i)/q1; in icvGetThreshVal_Otsu() 274 mu2 = (mu - q1*mu1)/q2; in icvGetThreshVal_Otsu() 275 sigma = q1*q2*(mu1 - mu2)*(mu1 - mu2); in icvGetThreshVal_Otsu()
|
/external/valgrind/main/drd/tests/ |
D | tsan_unittest.cpp | 5382 Mutex mu1; variable 5397 mu1.Lock(); in Worker() 5401 mu1.Unlock(); in Worker() 6688 Mutex mu1; // This Mutex guards var. variable 6693 MutexLock lock(&mu1); // Correct Mutex. in Thread1() 6985 Mutex mu1; // Protects PTR. variable 6991 MutexLock lock1(&mu1); // Protect PTR. in Writer1() 6997 MutexLock lock1(&mu1); // Protect PTR. in Writer2() 7044 Mutex mu1; // Protects PTR. variable 7050 MutexLock lock1(&mu1); // Protect PTR. in GoodWriter1() [all …]
|
/external/clang/docs/ |
D | ThreadSafetyAnalysis.rst | 189 Mutex mu1, mu2; 190 int a GUARDED_BY(mu1); 193 void foo() EXCLUSIVE_LOCKS_REQUIRED(mu1, mu2) { 199 mu1.Lock(); 201 mu1.Unlock();
|
/external/chromium_org/third_party/icu/source/data/translit/ |
D | Latin_Bopomofo.txt | 198 mu1 ← ㄇㄨ;
|
/external/icu/icu4c/source/data/translit/ |
D | Latin_Bopomofo.txt | 198 mu1 ← ㄇㄨ;
|