Lines Matching refs:thiscolsum
318 int thiscolsum; in h1v2_fancy_upsample() local
320 JLONG thiscolsum; in h1v2_fancy_upsample() local
337 thiscolsum = GETJSAMPLE(*inptr0++) * 3 + GETJSAMPLE(*inptr1++); in h1v2_fancy_upsample()
338 *outptr++ = (JSAMPLE)((thiscolsum + 1) >> 2); in h1v2_fancy_upsample()
361 register int thiscolsum, lastcolsum, nextcolsum; in h2v2_fancy_upsample() local
363 register JLONG thiscolsum, lastcolsum, nextcolsum; in h2v2_fancy_upsample() local
380 thiscolsum = GETJSAMPLE(*inptr0++) * 3 + GETJSAMPLE(*inptr1++); in h2v2_fancy_upsample()
382 *outptr++ = (JSAMPLE)((thiscolsum * 4 + 8) >> 4); in h2v2_fancy_upsample()
383 *outptr++ = (JSAMPLE)((thiscolsum * 3 + nextcolsum + 7) >> 4); in h2v2_fancy_upsample()
384 lastcolsum = thiscolsum; thiscolsum = nextcolsum; in h2v2_fancy_upsample()
390 *outptr++ = (JSAMPLE)((thiscolsum * 3 + lastcolsum + 8) >> 4); in h2v2_fancy_upsample()
391 *outptr++ = (JSAMPLE)((thiscolsum * 3 + nextcolsum + 7) >> 4); in h2v2_fancy_upsample()
392 lastcolsum = thiscolsum; thiscolsum = nextcolsum; in h2v2_fancy_upsample()
396 *outptr++ = (JSAMPLE)((thiscolsum * 3 + lastcolsum + 8) >> 4); in h2v2_fancy_upsample()
397 *outptr++ = (JSAMPLE)((thiscolsum * 4 + 7) >> 4); in h2v2_fancy_upsample()