Lines Matching refs:thresh
506 static WEBP_INLINE int hev(const uint8_t* p, int step, int thresh) { in hev() argument
508 return (VP8kabs0[p1 - p0] > thresh) || (VP8kabs0[q1 - q0] > thresh); in hev()
530 static void SimpleVFilter16(uint8_t* p, int stride, int thresh) { in SimpleVFilter16() argument
532 const int thresh2 = 2 * thresh + 1; in SimpleVFilter16()
540 static void SimpleHFilter16(uint8_t* p, int stride, int thresh) { in SimpleHFilter16() argument
542 const int thresh2 = 2 * thresh + 1; in SimpleHFilter16()
550 static void SimpleVFilter16i(uint8_t* p, int stride, int thresh) { in SimpleVFilter16i() argument
554 SimpleVFilter16(p, stride, thresh); in SimpleVFilter16i()
558 static void SimpleHFilter16i(uint8_t* p, int stride, int thresh) { in SimpleHFilter16i() argument
562 SimpleHFilter16(p, stride, thresh); in SimpleHFilter16i()
571 int thresh, int ithresh, int hev_thresh) { in FilterLoop26() argument
572 const int thresh2 = 2 * thresh + 1; in FilterLoop26()
587 int thresh, int ithresh, int hev_thresh) { in FilterLoop24() argument
588 const int thresh2 = 2 * thresh + 1; in FilterLoop24()
603 int thresh, int ithresh, int hev_thresh) { in VFilter16() argument
604 FilterLoop26(p, stride, 1, 16, thresh, ithresh, hev_thresh); in VFilter16()
608 int thresh, int ithresh, int hev_thresh) { in HFilter16() argument
609 FilterLoop26(p, 1, stride, 16, thresh, ithresh, hev_thresh); in HFilter16()
614 int thresh, int ithresh, int hev_thresh) { in VFilter16i() argument
618 FilterLoop24(p, stride, 1, 16, thresh, ithresh, hev_thresh); in VFilter16i()
623 int thresh, int ithresh, int hev_thresh) { in HFilter16i() argument
627 FilterLoop24(p, 1, stride, 16, thresh, ithresh, hev_thresh); in HFilter16i()
633 int thresh, int ithresh, int hev_thresh) { in VFilter8() argument
634 FilterLoop26(u, stride, 1, 8, thresh, ithresh, hev_thresh); in VFilter8()
635 FilterLoop26(v, stride, 1, 8, thresh, ithresh, hev_thresh); in VFilter8()
639 int thresh, int ithresh, int hev_thresh) { in HFilter8() argument
640 FilterLoop26(u, 1, stride, 8, thresh, ithresh, hev_thresh); in HFilter8()
641 FilterLoop26(v, 1, stride, 8, thresh, ithresh, hev_thresh); in HFilter8()
645 int thresh, int ithresh, int hev_thresh) { in VFilter8i() argument
646 FilterLoop24(u + 4 * stride, stride, 1, 8, thresh, ithresh, hev_thresh); in VFilter8i()
647 FilterLoop24(v + 4 * stride, stride, 1, 8, thresh, ithresh, hev_thresh); in VFilter8i()
651 int thresh, int ithresh, int hev_thresh) { in HFilter8i() argument
652 FilterLoop24(u + 4, 1, stride, 8, thresh, ithresh, hev_thresh); in HFilter8i()
653 FilterLoop24(v + 4, 1, stride, 8, thresh, ithresh, hev_thresh); in HFilter8i()