Home
last modified time | relevance | path

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

/external/libjpeg-turbo/
Djdsample.c320 int thiscolsum; in h1v2_fancy_upsample() local
322 JLONG thiscolsum; in h1v2_fancy_upsample() local
339 thiscolsum = GETJSAMPLE(*inptr0++) * 3 + GETJSAMPLE(*inptr1++); in h1v2_fancy_upsample()
340 *outptr++ = (JSAMPLE) ((thiscolsum + 1) >> 2); in h1v2_fancy_upsample()
363 register int thiscolsum, lastcolsum, nextcolsum; in h2v2_fancy_upsample() local
365 register JLONG thiscolsum, lastcolsum, nextcolsum; in h2v2_fancy_upsample() local
382 thiscolsum = GETJSAMPLE(*inptr0++) * 3 + GETJSAMPLE(*inptr1++); in h2v2_fancy_upsample()
384 *outptr++ = (JSAMPLE) ((thiscolsum * 4 + 8) >> 4); in h2v2_fancy_upsample()
385 *outptr++ = (JSAMPLE) ((thiscolsum * 3 + nextcolsum + 7) >> 4); in h2v2_fancy_upsample()
386 lastcolsum = thiscolsum; thiscolsum = nextcolsum; in h2v2_fancy_upsample()
[all …]