Searched refs:thr2 (Results 1 – 7 of 7) sorted by relevance
/third_party/musl/libc-test/src/functionalext/supplement/thread/ |
D | thrd_current.c | 80 thrd_t thr1, thr2; in thrd_current_0200() local 88 result = thrd_create(&thr2, threadfuncB, NULL); in thrd_current_0200() 98 if (thrd_equal(thr1, thr2)) { in thrd_current_0200() 106 if (thrd_equal(thr2, thrd_current())) { in thrd_current_0200() 115 result = thrd_join(thr2, NULL); in thrd_current_0200()
|
D | thrd_equal.c | 80 thrd_t thr1, thr2; in thrd_equal_0200() local 88 result = thrd_create(&thr2, threadfuncB, NULL); in thrd_equal_0200() 98 if (thrd_equal(thr1, thr2)) { in thrd_equal_0200() 106 if (thrd_equal(thr2, thrd_current())) { in thrd_equal_0200() 115 result = thrd_join(thr2, NULL); in thrd_equal_0200()
|
/third_party/boost/libs/interprocess/test/ |
D | sharable_mutex_test_template.hpp | 139 boost::interprocess::ipcdetail::OS_thread_t thr2; in test_plain_sharable_mutex() local 140 … boost::interprocess::ipcdetail::thread_launch(thr2, thread_adapter<SM>(plain_shared,&s2, mtx)); in test_plain_sharable_mutex() 142 boost::interprocess::ipcdetail::thread_join(thr2); in test_plain_sharable_mutex() 165 boost::interprocess::ipcdetail::OS_thread_t thr2; in test_plain_sharable_mutex() local 166 … boost::interprocess::ipcdetail::thread_launch(thr2, thread_adapter<SM>(plain_shared,&s2, mtx)); in test_plain_sharable_mutex() 178 boost::interprocess::ipcdetail::thread_join(thr2); in test_plain_sharable_mutex() 259 boost::interprocess::ipcdetail::OS_thread_t thr2; in test_timed_sharable_mutex() local 260 boost::interprocess::ipcdetail::thread_launch(thr2, thread_adapter<SM>(timed_shared,&s2,mtx)); in test_timed_sharable_mutex() 264 boost::interprocess::ipcdetail::thread_join(thr2); in test_timed_sharable_mutex()
|
/third_party/libsnd/src/G72x/ |
D | g72x.c | 424 short ylint, thr2, dqthr ; in update() local 435 thr2 = (ylint > 9) ? 31 << 10 : thr1 ; /* limit thr2 to 31 << 10 */ in update() 436 dqthr = (thr2 + (thr2 >> 1)) >> 1 ; /* dqthr = 0.75 * thr2 */ in update()
|
/third_party/boost/libs/thread/example/ |
D | shared_monitor.cpp | 133 boost::thread thr2(test_w); in main() local 134 v.push_back(&thr2); in main()
|
/third_party/ffmpeg/libavcodec/ |
D | g726.c | 195 int dq, re_signal, pk0, fa1, i, tr, ylint, ylfrac, thr2, al, dq0; in g726_decode() local 204 thr2 = (ylint > 9) ? 0x1f << 10 : (0x20 + ylfrac) << ylint; in g726_decode() 205 tr= (c->td == 1 && dq > ((3*thr2)>>2)); in g726_decode()
|
/third_party/boost/libs/process/test/ |
D | async.cpp | 186 std::thread thr2{[&]{io_context2.run();}}; in __anon052f0dbf0c02() variable 189 thr2.join();
|