Home
last modified time | relevance | path

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

/external/libjpeg-turbo/
Djdsample.c319 int thiscolsum, bias; in h1v2_fancy_upsample() local
321 JLONG thiscolsum, bias; in h1v2_fancy_upsample() local
341 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() local
367 register JLONG thiscolsum, lastcolsum, nextcolsum; in h2v2_fancy_upsample() local
384 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 …]