Lines Matching refs:thiscolsum
351 register int thiscolsum, lastcolsum, nextcolsum; in h2v2_fancy_upsample() local
353 register INT32 thiscolsum, lastcolsum, nextcolsum; in h2v2_fancy_upsample() local
370 thiscolsum = GETJSAMPLE(*inptr0++) * 3 + GETJSAMPLE(*inptr1++); in h2v2_fancy_upsample()
372 *outptr++ = (JSAMPLE) ((thiscolsum * 4 + 8) >> 4); in h2v2_fancy_upsample()
373 *outptr++ = (JSAMPLE) ((thiscolsum * 3 + nextcolsum + 7) >> 4); in h2v2_fancy_upsample()
374 lastcolsum = thiscolsum; thiscolsum = nextcolsum; in h2v2_fancy_upsample()
380 *outptr++ = (JSAMPLE) ((thiscolsum * 3 + lastcolsum + 8) >> 4); in h2v2_fancy_upsample()
381 *outptr++ = (JSAMPLE) ((thiscolsum * 3 + nextcolsum + 7) >> 4); in h2v2_fancy_upsample()
382 lastcolsum = thiscolsum; thiscolsum = nextcolsum; in h2v2_fancy_upsample()
386 *outptr++ = (JSAMPLE) ((thiscolsum * 3 + lastcolsum + 8) >> 4); in h2v2_fancy_upsample()
387 *outptr++ = (JSAMPLE) ((thiscolsum * 4 + 7) >> 4); in h2v2_fancy_upsample()