Searched refs:thiscolsum (Results 1 – 1 of 1) sorted by relevance
319 int thiscolsum, bias; in h1v2_fancy_upsample() local321 JLONG thiscolsum, bias; in h1v2_fancy_upsample() local341 thiscolsum = (*inptr0++) * 3 + (*inptr1++); in h1v2_fancy_upsample()342 *outptr++ = (JSAMPLE)((thiscolsum + bias) >> 2); in h1v2_fancy_upsample()365 register int thiscolsum, lastcolsum, nextcolsum; in h2v2_fancy_upsample() local367 register JLONG thiscolsum, lastcolsum, nextcolsum; in h2v2_fancy_upsample() local384 thiscolsum = (*inptr0++) * 3 + (*inptr1++); in h2v2_fancy_upsample()386 *outptr++ = (JSAMPLE)((thiscolsum * 4 + 8) >> 4); in h2v2_fancy_upsample()387 *outptr++ = (JSAMPLE)((thiscolsum * 3 + nextcolsum + 7) >> 4); in h2v2_fancy_upsample()388 lastcolsum = thiscolsum; thiscolsum = nextcolsum; in h2v2_fancy_upsample()[all …]