Home
last modified time | relevance | path

Searched refs:thiscolsum (Results 1 – 1 of 1) sorted by relevance

/external/libjpeg-turbo/
Djdsample.c318 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()
[all …]