Home
last modified time | relevance | path

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

/third_party/musl/libc-test/src/functionalext/supplement/thread/
Dthrd_current.c80 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()
Dthrd_equal.c80 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/libsnd/src/G72x/
Dg72x.c424 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/ffmpeg/libavcodec/
Dg726.c195 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()