Lines Matching refs:tilew
165 String fileName, int tilew, int tileh) throws Exception { in decomp() argument
191 int width = doTile ? tilew : scaledw; in decomp()
206 for (int x = 0; x < w; x += tilew, tile++) { in decomp()
207 int width = doTile ? Math.min(tilew, w - x) : scaledw; in decomp()
281 else if (tilew != w || tileh != h) in decomp()
282 sizeStr = new String(tilew + "x" + tileh); in decomp()
333 int totalJpegSize = 0, tilew, tileh, i, iter; in fullTest() local
351 for (tilew = doTile ? 8 : w, tileh = doTile ? 8 : h; ; in fullTest()
352 tilew *= 2, tileh *= 2) { in fullTest()
353 if (tilew > w) in fullTest()
354 tilew = w; in fullTest()
357 ntilesw = (w + tilew - 1) / tilew; in fullTest()
360 jpegBuf = new byte[ntilesw * ntilesh][TJ.bufSize(tilew, tileh, subsamp)]; in fullTest()
374 yuvImage = new YUVImage(tilew, yuvPad, tileh, subsamp); in fullTest()
387 for (int x = 0; x < w; x += tilew, tile++) { in fullTest()
388 int width = Math.min(tilew, w - x); in fullTest()
421 System.out.format("%-5d %-5d ", tilew, tileh); in fullTest()
438 tilew, tileh); in fullTest()
466 if (tilew == w && tileh == h && write) { in fullTest()
480 fileName, tilew, tileh); in fullTest()
482 if (tilew == w && tileh == h) break; in fullTest()
540 for (int tilew = doTile ? 16 : w, tileh = doTile ? 16 : h; ; in decompTest()
541 tilew *= 2, tileh *= 2) { in decompTest()
542 if (tilew > w) in decompTest()
543 tilew = w; in decompTest()
546 ntilesw = (w + tilew - 1) / tilew; in decompTest()
549 tw = w; th = h; ttilew = tilew; ttileh = tileh; in decompTest()
561 System.out.format("%-5d %-5d ", tilew, tileh); in decompTest()
570 tw = h; th = w; ttilew = tileh; ttileh = tilew; in decompTest()
670 if (w == tilew) in decompTest()
683 if (tilew == w && tileh == h) break; in decompTest()