Home
last modified time | relevance | path

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

/external/libvncserver/common/
Dturbojpeg.c751 int jpegwidth, jpegheight, scaledw, scaledh; in tjDecompress2() local
791 scaledw=TJSCALED(jpegwidth, sf[i]); in tjDecompress2()
793 if(scaledw<=width && scaledh<=height) in tjDecompress2()
796 if(scaledw>width || scaledh>height) in tjDecompress2()
798 width=scaledw; height=scaledh; in tjDecompress2()
/external/libvncserver/test/
Dtjbench.c88 int scaledw=TJSCALED(w, sf); in decomptest() local
90 int pitch=scaledw*ps; in decomptest()
115 if(tjDecompress2(handle, jpegbuf[0], jpegsize[0], dstbuf, scaledw, in decomptest()
127 int width=dotile? min(tilew, w-col*tilew):scaledw; in decomptest()
160 if(savebmp(tempstr, dstbuf, scaledw, scaledh, bmpPF[pf], pitch, in decomptest()
/external/libjpeg-turbo/
Dturbojpeg.c1340 int jpegwidth, jpegheight, scaledw, scaledh; in tjDecompress2() local
1379 scaledw=TJSCALED(jpegwidth, sf[i]); in tjDecompress2()
1381 if(scaledw<=width && scaledh<=height) in tjDecompress2()
1386 width=scaledw; height=scaledh; in tjDecompress2()
1705 int jpegwidth, jpegheight, jpegSubsamp, scaledw, scaledh; in tjDecompressToYUVPlanes() local
1754 scaledw=TJSCALED(jpegwidth, sf[i]); in tjDecompressToYUVPlanes()
1756 if(scaledw<=width && scaledh<=height) in tjDecompressToYUVPlanes()
1764 width=scaledw; height=scaledh; in tjDecompressToYUVPlanes()
1880 int i, jpegwidth, jpegheight, scaledw, scaledh; in tjDecompressToYUV2() local
1900 scaledw=TJSCALED(jpegwidth, sf[i]); in tjDecompressToYUV2()
[all …]
Dtjbench.c113 int scaledw=TJSCALED(w, sf); in decomp() local
115 int pitch=scaledw*ps; in decomp()
140 int width=dotile? tilew:scaledw; in decomp()
159 int width=dotile? min(tilew, w-col*tilew):scaledw; in decomp()
227 if(savebmp(tempstr, dstbuf, scaledw, scaledh, pf, in decomp()
/external/libjpeg-turbo/java/
DTJBench.java140 int scaledw = sf.getScaled(w); in decomp() local
142 int pitch = scaledw * ps; in decomp()
158 int width = doTile ? tilew : scaledw; in decomp()
172 int width = doTile ? Math.min(tilew, w - x) : scaledw; in decomp()
238 saveImage(tempStr, dstBuf, scaledw, scaledh, pf); in decomp()