Lines Matching refs:below_ptr
311 register JSAMPROW inptr0, inptr1, above_ptr, below_ptr, outptr; in h2v2_smooth_downsample() local
343 below_ptr = input_data[inrow+2]; in h2v2_smooth_downsample()
349 GETJSAMPLE(*below_ptr) + GETJSAMPLE(below_ptr[1]) + in h2v2_smooth_downsample()
354 GETJSAMPLE(*below_ptr) + GETJSAMPLE(below_ptr[2]); in h2v2_smooth_downsample()
357 inptr0 += 2; inptr1 += 2; above_ptr += 2; below_ptr += 2; in h2v2_smooth_downsample()
365 GETJSAMPLE(*below_ptr) + GETJSAMPLE(below_ptr[1]) + in h2v2_smooth_downsample()
372 GETJSAMPLE(below_ptr[-1]) + GETJSAMPLE(below_ptr[2]); in h2v2_smooth_downsample()
377 inptr0 += 2; inptr1 += 2; above_ptr += 2; below_ptr += 2; in h2v2_smooth_downsample()
384 GETJSAMPLE(*below_ptr) + GETJSAMPLE(below_ptr[1]) + in h2v2_smooth_downsample()
389 GETJSAMPLE(below_ptr[-1]) + GETJSAMPLE(below_ptr[1]); in h2v2_smooth_downsample()
412 register JSAMPROW inptr, above_ptr, below_ptr, outptr; in fullsize_smooth_downsample() local
436 below_ptr = input_data[inrow+1]; in fullsize_smooth_downsample()
439 colsum = GETJSAMPLE(*above_ptr++) + GETJSAMPLE(*below_ptr++) + in fullsize_smooth_downsample()
442 nextcolsum = GETJSAMPLE(*above_ptr) + GETJSAMPLE(*below_ptr) + in fullsize_smooth_downsample()
451 above_ptr++; below_ptr++; in fullsize_smooth_downsample()
452 nextcolsum = GETJSAMPLE(*above_ptr) + GETJSAMPLE(*below_ptr) + in fullsize_smooth_downsample()