Lines Matching refs:high
28 const int16_t *high, ptrdiff_t high_stride,
35 output[(2*0+0)*out_stride] = (tmp + high[0*high_stride]) >> 1;
40 output[(2*0+1)*out_stride] = (tmp - high[0*high_stride]) >> 1;
46 output[(2*i+0)*out_stride] = (tmp + low[i*low_stride] + high[i*high_stride]) >> 1;
51 output[(2*i+1)*out_stride] = (tmp + low[i*low_stride] - high[i*high_stride]) >> 1;
57 output[(2*i+0)*out_stride] = (tmp + high[i*high_stride]) >> 1;
62 output[(2*i+1)*out_stride] = (tmp - high[i*high_stride]) >> 1;
69 const int16_t *high, ptrdiff_t high_stride,
73 filter(output, out_stride, low, low_stride, high, high_stride, height, 0);
75 high++;
82 const int16_t *high, ptrdiff_t hstride,
86 filter(output, 1, low, 1, high, 1, width, 0);
88 high += hstride;
93 static void horiz_filter_clip(int16_t *output, const int16_t *low, const int16_t *high,
96 filter(output, 1, low, 1, high, 1, width, clip);
99 static void horiz_filter_clip_bayer(int16_t *output, const int16_t *low, const int16_t *high,
102 filter(output, 2, low, 1, high, 1, width, clip);