Home
last modified time | relevance | path

Searched refs:thr2 (Results 1 - 6 of 6) sorted by relevance

/third_party/ffmpeg/libavfilter/
H A Dvf_limitdiff.c42 int thr1, thr2; member
52 int thr1, int thr2, int w, int depth);
91 int thr1, int thr2, int w, int depth) in limitdiff8()
99 else if (diff_ref >= thr2) in limitdiff8()
102 dst[x] = av_clip_uint8(source[x] + diff * (thr2 - diff_ref) / (thr2 - thr1)); in limitdiff8()
108 int thr1, int thr2, int w, int depth) in limitdiff16()
121 else if (diff_ref >= thr2) in limitdiff16()
124 dst[x] = av_clip_uintp2_c(source[x] + diff * (thr2 - diff_ref) / (thr2 in limitdiff16()
89 limitdiff8(const uint8_t *filtered, uint8_t *dst, const uint8_t *source, const uint8_t *reference, int thr1, int thr2, int w, int depth) limitdiff8() argument
106 limitdiff16(const uint8_t *ffiltered, uint8_t *ddst, const uint8_t *ssource, const uint8_t *rreference, int thr1, int thr2, int w, int depth) limitdiff16() argument
171 const int thr2 = s->thr2; limitdiff_slice() local
[all...]
/third_party/musl/libc-test/src/functionalext/supplement/thread/
H A Dthrd_current.c126 thrd_t thr1, thr2; in thrd_current_0200() local
134 result = thrd_create(&thr2, threadfuncB, NULL); in thrd_current_0200()
144 if (thrd_equal(thr1, thr2)) { in thrd_current_0200()
152 if (thrd_equal(thr2, thrd_current())) { in thrd_current_0200()
161 result = thrd_join(thr2, NULL); in thrd_current_0200()
H A Dthrd_equal.c131 thrd_t thr1, thr2; in thrd_equal_0200() local
139 result = thrd_create(&thr2, threadfuncB, NULL); in thrd_equal_0200()
149 if (thrd_equal(thr1, thr2)) { in thrd_equal_0200()
150 t_error("%s failed, thr1 and thr2 equal", __func__); in thrd_equal_0200()
157 if (thrd_equal(thr2, thrd_current())) { in thrd_equal_0200()
158 t_error("%s failed, thr2 and current thread equal", __func__); in thrd_equal_0200()
166 result = thrd_join(thr2, NULL); in thrd_equal_0200()
/third_party/musl/libc-test/src/functionalext/supplement/ldso/ldso_gtest/
H A Dcxa_thread_atexit_test.cpp70 pthread_t thr1, thr2; in HWTEST_F() local
75 ASSERT_EQ(0, pthread_create(&thr2, nullptr, ChildThreadFunc, nullptr)); in HWTEST_F()
76 ASSERT_EQ(0, pthread_join(thr2, nullptr)); in HWTEST_F()
/third_party/libsnd/src/G72x/
H A 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/
H A Dg726.c200 int dq, re_signal, pk0, fa1, i, tr, ylint, ylfrac, thr2, al, dq0; in g726_decode() local
209 thr2 = (ylint > 9) ? 0x1f << 10 : (0x20 + ylfrac) << ylint; in g726_decode()
210 tr= (c->td == 1 && dq > ((3*thr2)>>2)); in g726_decode()

Completed in 5 milliseconds