Searched defs:th (Results 1 - 25 of 142) sorted by path

123456

/external/annotation-tools/annotation-file-utilities/lib/
H A Dasm-5.0.jar ... .asm.tree.analysis.Analyzer a Throwable th } org/objectweb/asm/ALLPerfTest$14.class ALLPerfTest. ...
/external/annotation-tools/asmx/
H A Dbcel.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ...
H A Djavassist.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/ByteArrayClassPath.class ByteArrayClassPath.java package javassist ...
/external/annotation-tools/asmx/test/lib/
H A Dbcel-5.1.jarMETA-INF/ org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ org/apache/bcel/util/ org/apache/ ...
H A Djavassist.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/ByteArrayClassPath.class ByteArrayClassPath.java package javassist ...
H A Dxalan-2.6.0.jarMETA-INF/ META-INF/MANIFEST.MF java_cup/ java_cup/runtime/ META-INF/services/ org/ org/apache/ ...
/external/boringssl/src/crypto/fipsmodule/bn/
H A Ddiv.c71 BN_ULONG dh, dl, q, ret = 0, th, tl, t; local
100 th = q * dh;
103 t = h - th;
109 th -= dh;
114 th += t;
117 th++;
120 if (h < th) {
124 h -= th;
/external/compiler-rt/lib/asan/tests/
H A Dasan_mac_test.cc197 pthread_t th; local
200 PTHREAD_CREATE(&th, NULL, TSDAllocWorker, &test_key);
201 PTHREAD_JOIN(th, NULL);
H A Dasan_test.cc153 pthread_t th; local
154 PTHREAD_CREATE(&th, NULL, TSDWorker, NULL);
155 PTHREAD_JOIN(th, NULL);
166 pthread_t th; local
169 PTHREAD_CREATE(&th, NULL, TSDWorker, &test_key);
170 PTHREAD_JOIN(th, NULL);
/external/compiler-rt/lib/lsan/
H A Dlsan_interceptors.cc229 INTERCEPTOR(int, pthread_create, void *th, void *attr, argument
252 res = REAL(pthread_create)(th, attr, __lsan_thread_start_func, &p);
255 int tid = ThreadCreate(GetCurrentThread(), *(uptr *)th, detached);
266 INTERCEPTOR(int, pthread_join, void *th, void **ret) { argument
268 int tid = ThreadTid((uptr)th);
269 int res = REAL(pthread_join)(th, ret);
/external/compiler-rt/lib/msan/
H A Dmsan_interceptors.cc1112 INTERCEPTOR(int, pthread_create, void *th, void *attr, void *(*callback)(void*), argument
1125 int res = REAL(pthread_create)(th, attr, MsanThreadStartFunc, t);
1130 __msan_unpoison(th, __sanitizer::pthread_t_sz);
1145 INTERCEPTOR(int, pthread_join, void *th, void **retval) { argument
1147 int res = REAL(pthread_join)(th, retval);
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_linux.cc1244 void *th; local
1245 real_pthread_create(&th, nullptr, (void*(*)(void *arg))func, arg);
1247 return th;
1250 void internal_join_thread(void *th) { argument
1251 real_pthread_join(th, nullptr);
1256 void internal_join_thread(void *th) {} argument
H A Dsanitizer_mac.cc453 pthread_t th; local
454 pthread_create(&th, 0, (void*(*)(void *arg))func, arg);
456 return th;
459 void internal_join_thread(void *th) { pthread_join((pthread_t)th, 0); } argument
H A Dsanitizer_win.cc645 void internal_join_thread(void *th) { } argument
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors.cc901 void *th, void *attr, void *(*callback)(void*), void * param) {
902 SCOPED_INTERCEPTOR_RAW(pthread_create, th, attr, callback, param);
932 res = REAL(pthread_create)(th, attr, __tsan_thread_start_func, &p);
936 int tid = ThreadCreate(thr, pc, *(uptr*)th,
955 TSAN_INTERCEPTOR(int, pthread_join, void *th, void **ret) { argument
956 SCOPED_INTERCEPTOR_RAW(pthread_join, th, ret);
957 int tid = ThreadTid(thr, pc, (uptr)th);
959 int res = BLOCK_REAL(pthread_join)(th, ret);
969 TSAN_INTERCEPTOR(int, pthread_detach, void *th) { argument
970 SCOPED_TSAN_INTERCEPTOR(pthread_detach, th);
900 TSAN_INTERCEPTOR(int, pthread_create, void *th, void *attr, void *(*callback)(void*), void * param) argument
[all...]
/external/compiler-rt/lib/tsan/tests/rtl/
H A Dtsan_posix.cc59 pthread_t th[3]; local
63 EXPECT_EQ(pthread_create(&th[0], 0, dtors_thread, &k1), 0);
64 EXPECT_EQ(pthread_create(&th[1], 0, dtors_thread, &k2), 0);
65 EXPECT_EQ(pthread_join(th[0], 0), 0);
66 EXPECT_EQ(pthread_create(&th[2], 0, dtors_thread, &k3), 0);
67 EXPECT_EQ(pthread_join(th[1], 0), 0);
68 EXPECT_EQ(pthread_join(th[2], 0), 0);
82 pthread_t th[kThreads]; local
84 EXPECT_EQ(pthread_create(&th[i], 0, local_thread,
87 EXPECT_EQ(pthread_join(th[
133 pthread_t th; local
[all...]
/external/compiler-rt/test/tsan/Linux/
H A Dmutex_robust.cc20 pthread_t th; local
21 pthread_create(&th, 0, thr, 0);
27 pthread_join(th, 0);
H A Dmutex_robust2.cc22 pthread_t th; local
23 pthread_create(&th, 0, thr, 0);
30 pthread_join(th, 0);
/external/compiler-rt/test/tsan/
H A Dbench.h47 pthread_t *th = (pthread_t*)malloc(nth * sizeof(pthread_t)); local
49 pthread_create(&th[i], 0, (void*(*)(void*))f, (void*)(long)i);
51 pthread_join(th[i], 0);
H A Dcond_cancel.c37 pthread_t th; local
42 pthread_create(&th, 0, thr1, 0);
45 pthread_cancel(th);
47 pthread_join(th, 0);
H A Dcond_destruction.cc27 pthread_t th; local
30 pthread_create(&th, 0, thr, 0);
49 pthread_join(th, 0);
H A Dcond_race.cc29 pthread_t th; local
30 pthread_create(&th, 0, thr, c);
38 pthread_join(th, 0);
H A Ddl_iterate_phdr.cc38 pthread_t th; local
39 pthread_create(&th, 0, thread, 0);
49 pthread_join(th, 0);
H A Dfd_dup_norace2.cc47 pthread_t th; local
48 pthread_create(&th, 0, Thread, 0);
51 pthread_join(th, 0);
H A Dfd_dup_race.cc24 pthread_t th; local
25 pthread_create(&th, 0, Thread, 0);
29 pthread_join(th, 0);

Completed in 616 milliseconds

123456