Lines Matching refs:above_ptr
311 register JSAMPROW inptr0, inptr1, above_ptr, below_ptr, outptr; in h2v2_smooth_downsample() local
342 above_ptr = input_data[inrow-1]; in h2v2_smooth_downsample()
348 neighsum = GETJSAMPLE(*above_ptr) + GETJSAMPLE(above_ptr[1]) + in h2v2_smooth_downsample()
353 neighsum += GETJSAMPLE(*above_ptr) + GETJSAMPLE(above_ptr[2]) + in h2v2_smooth_downsample()
357 inptr0 += 2; inptr1 += 2; above_ptr += 2; below_ptr += 2; in h2v2_smooth_downsample()
364 neighsum = GETJSAMPLE(*above_ptr) + GETJSAMPLE(above_ptr[1]) + in h2v2_smooth_downsample()
371 neighsum += GETJSAMPLE(above_ptr[-1]) + GETJSAMPLE(above_ptr[2]) + in h2v2_smooth_downsample()
377 inptr0 += 2; inptr1 += 2; above_ptr += 2; below_ptr += 2; in h2v2_smooth_downsample()
383 neighsum = GETJSAMPLE(*above_ptr) + GETJSAMPLE(above_ptr[1]) + in h2v2_smooth_downsample()
388 neighsum += GETJSAMPLE(above_ptr[-1]) + GETJSAMPLE(above_ptr[1]) + in h2v2_smooth_downsample()
412 register JSAMPROW inptr, above_ptr, below_ptr, outptr; in fullsize_smooth_downsample() local
435 above_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()