Home
last modified time | relevance | path

Searched refs:thr1 (Results 1 – 8 of 8) sorted by relevance

/third_party/ffmpeg/libavfilter/
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() argument
97 if (diff_ref <= thr1) 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() argument
119 if (diff_ref <= thr1) in limitdiff16()
124 dst[x] = av_clip_uintp2_c(source[x] + diff * (thr2 - diff_ref) / (thr2 - thr1), depth); in limitdiff16()
148 s->thr1 = s->threshold * ((1 << s->depth) - 1); in config_input()
149 s->thr2 = s->thr1 * s->elasticity; in config_input()
[all …]
/third_party/musl/libc-test/src/functionalext/supplement/thread/
Dthrd_current.c80 thrd_t thr1, thr2; in thrd_current_0200() local
83 result = thrd_create(&thr1, threadfuncB, NULL); in thrd_current_0200()
98 if (thrd_equal(thr1, thr2)) { in thrd_current_0200()
102 if (thrd_equal(thr1, thrd_current())) { in thrd_current_0200()
110 result = thrd_join(thr1, NULL); in thrd_current_0200()
Dthrd_equal.c80 thrd_t thr1, thr2; in thrd_equal_0200() local
83 result = thrd_create(&thr1, threadfuncB, NULL); in thrd_equal_0200()
98 if (thrd_equal(thr1, thr2)) { in thrd_equal_0200()
102 if (thrd_equal(thr1, thrd_current())) { in thrd_equal_0200()
110 result = thrd_join(thr1, NULL); in thrd_equal_0200()
/third_party/glfw/deps/
Dtinycthread.c409 int thrd_equal(thrd_t thr0, thrd_t thr1) in thrd_equal() argument
412 return thr0 == thr1; in thrd_equal()
414 return pthread_equal(thr0, thr1); in thrd_equal()
Dtinycthread.h356 int thrd_equal(thrd_t thr0, thrd_t thr1);
/third_party/mesa3d/src/c11/impl/
Dthreads_posix.c286 thrd_equal(thrd_t thr0, thrd_t thr1) in thrd_equal() argument
288 return pthread_equal(thr0, thr1); in thrd_equal()
Dthreads_win32.c382 thrd_equal(thrd_t thr0, thrd_t thr1) in thrd_equal() argument
384 return GetThreadId(thr0) == GetThreadId(thr1); in thrd_equal()
/third_party/libsnd/src/G72x/
Dg72x.c425 short ylfrac, thr1 ; in update() local
434 thr1 = (32 + ylfrac) << ylint ; /* threshold */ in update()
435 thr2 = (ylint > 9) ? 31 << 10 : thr1 ; /* limit thr2 to 31 << 10 */ in update()