Lines Matching refs:below_ptr
303 register JSAMPROW inptr0, inptr1, above_ptr, below_ptr, outptr; in h2v2_smooth_downsample() local
335 below_ptr = input_data[inrow+2]; in h2v2_smooth_downsample()
341 GETJSAMPLE(*below_ptr) + GETJSAMPLE(below_ptr[1]) + in h2v2_smooth_downsample()
346 GETJSAMPLE(*below_ptr) + GETJSAMPLE(below_ptr[2]); in h2v2_smooth_downsample()
349 inptr0 += 2; inptr1 += 2; above_ptr += 2; below_ptr += 2; in h2v2_smooth_downsample()
357 GETJSAMPLE(*below_ptr) + GETJSAMPLE(below_ptr[1]) + in h2v2_smooth_downsample()
364 GETJSAMPLE(below_ptr[-1]) + GETJSAMPLE(below_ptr[2]); in h2v2_smooth_downsample()
369 inptr0 += 2; inptr1 += 2; above_ptr += 2; below_ptr += 2; in h2v2_smooth_downsample()
376 GETJSAMPLE(*below_ptr) + GETJSAMPLE(below_ptr[1]) + in h2v2_smooth_downsample()
381 GETJSAMPLE(below_ptr[-1]) + GETJSAMPLE(below_ptr[1]); in h2v2_smooth_downsample()
403 register JSAMPROW inptr, above_ptr, below_ptr, outptr; in fullsize_smooth_downsample() local
427 below_ptr = input_data[outrow+1]; in fullsize_smooth_downsample()
430 colsum = GETJSAMPLE(*above_ptr++) + GETJSAMPLE(*below_ptr++) + in fullsize_smooth_downsample()
433 nextcolsum = GETJSAMPLE(*above_ptr) + GETJSAMPLE(*below_ptr) + in fullsize_smooth_downsample()
442 above_ptr++; below_ptr++; in fullsize_smooth_downsample()
443 nextcolsum = GETJSAMPLE(*above_ptr) + GETJSAMPLE(*below_ptr) + in fullsize_smooth_downsample()