Lines Matching refs:thresh
516 static WEBP_INLINE int hev(const uint8_t* p, int step, int thresh) { in hev() argument
518 return (VP8kabs0[p1 - p0] > thresh) || (VP8kabs0[q1 - q0] > thresh); in hev()
540 static void SimpleVFilter16(uint8_t* p, int stride, int thresh) { in SimpleVFilter16() argument
542 const int thresh2 = 2 * thresh + 1; in SimpleVFilter16()
550 static void SimpleHFilter16(uint8_t* p, int stride, int thresh) { in SimpleHFilter16() argument
552 const int thresh2 = 2 * thresh + 1; in SimpleHFilter16()
560 static void SimpleVFilter16i(uint8_t* p, int stride, int thresh) { in SimpleVFilter16i() argument
564 SimpleVFilter16(p, stride, thresh); in SimpleVFilter16i()
568 static void SimpleHFilter16i(uint8_t* p, int stride, int thresh) { in SimpleHFilter16i() argument
572 SimpleHFilter16(p, stride, thresh); in SimpleHFilter16i()
581 int thresh, int ithresh, int hev_thresh) { in FilterLoop26() argument
582 const int thresh2 = 2 * thresh + 1; in FilterLoop26()
597 int thresh, int ithresh, int hev_thresh) { in FilterLoop24() argument
598 const int thresh2 = 2 * thresh + 1; 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()
633 int thresh, int ithresh, int hev_thresh) { in HFilter16i() argument
637 FilterLoop24(p, 1, stride, 16, thresh, ithresh, hev_thresh); in HFilter16i()
643 int thresh, int ithresh, int hev_thresh) { in VFilter8() argument
644 FilterLoop26(u, stride, 1, 8, thresh, ithresh, hev_thresh); in VFilter8()
645 FilterLoop26(v, stride, 1, 8, thresh, ithresh, hev_thresh); in VFilter8()
649 int thresh, int ithresh, int hev_thresh) { in HFilter8() argument
650 FilterLoop26(u, 1, stride, 8, thresh, ithresh, hev_thresh); in HFilter8()
651 FilterLoop26(v, 1, stride, 8, thresh, ithresh, hev_thresh); in HFilter8()
655 int thresh, int ithresh, int hev_thresh) { in VFilter8i() argument
656 FilterLoop24(u + 4 * stride, stride, 1, 8, thresh, ithresh, hev_thresh); in VFilter8i()
657 FilterLoop24(v + 4 * stride, stride, 1, 8, thresh, ithresh, hev_thresh); in VFilter8i()
661 int thresh, int ithresh, int hev_thresh) { in HFilter8i() argument
662 FilterLoop24(u + 4, 1, stride, 8, thresh, ithresh, hev_thresh); in HFilter8i()
663 FilterLoop24(v + 4, 1, stride, 8, thresh, ithresh, hev_thresh); in HFilter8i()