/external/webp/src/dsp/ |
D | dec_mips32.c | 91 int thresh, int ithresh, int hev_thresh) { in FilterLoop26() argument 93 if (needs_filter2(p, hstride, thresh, ithresh)) { in FilterLoop26() 106 int thresh, int ithresh, int hev_thresh) { in FilterLoop24() argument 108 if (needs_filter2(p, hstride, thresh, ithresh)) { in FilterLoop24() 121 int thresh, int ithresh, int hev_thresh) { in VFilter16() argument 122 FilterLoop26(p, stride, 1, 16, thresh, ithresh, hev_thresh); in VFilter16() 126 int thresh, int ithresh, int hev_thresh) { in HFilter16() argument 127 FilterLoop26(p, 1, stride, 16, thresh, ithresh, hev_thresh); in HFilter16() 132 int thresh, int ithresh, int hev_thresh) { in VFilter8() argument 133 FilterLoop26(u, stride, 1, 8, thresh, ithresh, hev_thresh); in VFilter8() [all …]
|
D | dec.c | 581 int thresh, int ithresh, int hev_thresh) { in FilterLoop26() argument 584 if (needs_filter2(p, hstride, thresh2, ithresh)) { in FilterLoop26() 597 int thresh, int ithresh, int hev_thresh) { in FilterLoop24() argument 600 if (needs_filter2(p, hstride, thresh2, ithresh)) { in FilterLoop24() 613 int thresh, int ithresh, int hev_thresh) { in VFilter16() argument 614 FilterLoop26(p, stride, 1, 16, thresh, ithresh, hev_thresh); in VFilter16() 618 int thresh, int ithresh, int hev_thresh) { in HFilter16() argument 619 FilterLoop26(p, 1, stride, 16, thresh, ithresh, hev_thresh); in HFilter16() 624 int thresh, int ithresh, int hev_thresh) { in VFilter16i() argument 628 FilterLoop24(p, stride, 1, 16, thresh, ithresh, hev_thresh); in VFilter16i() [all …]
|
D | dec_sse2.c | 740 int thresh, int ithresh, in ComplexMask() argument 742 const __m128i it = _mm_set1_epi8(ithresh); in ComplexMask() 752 int thresh, int ithresh, int hev_thresh) { in VFilter16() argument 765 ComplexMask(&p1, &p0, &q0, &q1, thresh, ithresh, &mask); in VFilter16() 778 int thresh, int ithresh, int hev_thresh) { in HFilter16() argument 789 ComplexMask(&p1, &p0, &q0, &q1, thresh, ithresh, &mask); in HFilter16() 798 int thresh, int ithresh, int hev_thresh) { in VFilter16i() argument 815 ComplexMask(&p1, &p0, &p3, &p2, thresh, ithresh, &mask); in VFilter16i() 831 int thresh, int ithresh, int hev_thresh) { in HFilter16i() argument 847 ComplexMask(&p1, &p0, &p3, &p2, thresh, ithresh, &mask); in HFilter16i() [all …]
|
D | dec_neon.c | 666 int ithresh, int thresh) { in NeedsFilter2() argument 667 const uint8x16_t ithresh_v = vdupq_n_u8((uint8_t)ithresh); in NeedsFilter2() 821 int thresh, int ithresh, int hev_thresh) { in VFilter16() argument 826 ithresh, thresh); in VFilter16() 838 int thresh, int ithresh, int hev_thresh) { in HFilter16() argument 843 ithresh, thresh); in HFilter16() 856 int thresh, int ithresh, int hev_thresh) { in VFilter16i() argument 866 NeedsFilter2(p3, p2, p1, p0, q0, q1, q2, q3, ithresh, thresh); in VFilter16i() 880 int thresh, int ithresh, int hev_thresh) { in HFilter16i() argument 890 NeedsFilter2(p3, p2, p1, p0, q0, q1, q2, q3, ithresh, thresh); in HFilter16i() [all …]
|
D | dsp.h | 182 int thresh, int ithresh, int hev_t); 184 int thresh, int ithresh, int hev_t);
|
/external/opencv/cv/src/ |
D | cvthresh.cpp | 311 int ithresh, imaxval, cn; in cvThreshold() local 391 ithresh = cvFloor(thresh); in cvThreshold() 394 imaxval = ithresh; in cvThreshold() 397 if( ithresh < 0 || ithresh >= 255 ) in cvThreshold() 400 ((type == CV_THRESH_TRUNC || type == CV_THRESH_TOZERO_INV) && ithresh < 0) || in cvThreshold() 401 (type == CV_THRESH_TOZERO && ithresh >= 255) ) in cvThreshold() 403 int v = type == CV_THRESH_BINARY ? (ithresh >= 255 ? 0 : imaxval) : in cvThreshold() 404 type == CV_THRESH_BINARY_INV ? (ithresh >= 255 ? imaxval : 0) : in cvThreshold() 422 (uchar)ithresh, dst->data.ptr, dst_step, roi, in cvThreshold() 436 dst->data.ptr, dst_step, roi, (uchar)ithresh, in cvThreshold() [all …]
|