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.c1380 int jpegwidth, jpegheight, scaledw, scaledh; in tjDecompress2() local
1419 scaledw=TJSCALED(jpegwidth, sf[i]); in tjDecompress2()
1421 if(scaledw<=width && scaledh<=height) in tjDecompress2()
1426 width=scaledw; height=scaledh; in tjDecompress2()
1746 int jpegwidth, jpegheight, jpegSubsamp, scaledw, scaledh; in tjDecompressToYUVPlanes() local
1795 scaledw=TJSCALED(jpegwidth, sf[i]); in tjDecompressToYUVPlanes()
1797 if(scaledw<=width && scaledh<=height) in tjDecompressToYUVPlanes()
1805 width=scaledw; height=scaledh; in tjDecompressToYUVPlanes()
1921 int i, jpegwidth, jpegheight, scaledw, scaledh; in tjDecompressToYUV2() local
1947 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()
143 int width=dotile? tilew:scaledw; in decomp()
165 int width=dotile? min(tilew, w-col*tilew):scaledw; in decomp()
236 if(savebmp(tempstr, dstbuf, scaledw, scaledh, pf, in decomp()
/external/libjpeg-turbo/java/
DTJBench.java142 int scaledw = sf.getScaled(w); in decomp() local
144 int pitch = scaledw * ps; in decomp()
163 int width = doTile ? tilew : scaledw; in decomp()
177 int width = doTile ? Math.min(tilew, w - x) : scaledw; in decomp()
245 saveImage(tempStr, dstBuf, scaledw, scaledh, pf); in decomp()