Lines Matching refs:inptr
164 register JSAMPROW inptr, outptr; in int_upsample() local
177 inptr = input_data[inrow]; in int_upsample()
181 invalue = *inptr++; /* don't need GETJSAMPLE() here */ in int_upsample()
207 register JSAMPROW inptr, outptr; in h2v1_upsample() local
213 inptr = input_data[inrow]; in h2v1_upsample()
217 invalue = *inptr++; /* don't need GETJSAMPLE() here */ in h2v1_upsample()
235 register JSAMPROW inptr, outptr; in h2v2_upsample() local
242 inptr = input_data[inrow]; in h2v2_upsample()
246 invalue = *inptr++; /* don't need GETJSAMPLE() here */ in h2v2_upsample()
278 register JSAMPROW inptr, outptr; in h2v1_fancy_upsample() local
284 inptr = input_data[inrow]; in h2v1_fancy_upsample()
287 invalue = GETJSAMPLE(*inptr++); in h2v1_fancy_upsample()
289 *outptr++ = (JSAMPLE) ((invalue * 3 + GETJSAMPLE(*inptr) + 2) >> 2); in h2v1_fancy_upsample()
293 invalue = GETJSAMPLE(*inptr++) * 3; in h2v1_fancy_upsample()
294 *outptr++ = (JSAMPLE) ((invalue + GETJSAMPLE(inptr[-2]) + 1) >> 2); in h2v1_fancy_upsample()
295 *outptr++ = (JSAMPLE) ((invalue + GETJSAMPLE(*inptr) + 2) >> 2); in h2v1_fancy_upsample()
299 invalue = GETJSAMPLE(*inptr); in h2v1_fancy_upsample()
300 *outptr++ = (JSAMPLE) ((invalue * 3 + GETJSAMPLE(inptr[-1]) + 1) >> 2); in h2v1_fancy_upsample()