• Home
  • Raw
  • Download

Lines Matching refs:tilew

137                      String fileName, int tilew, int tileh) throws Exception {  in decomp()  argument
163 int width = doTile ? tilew : scaledw; in decomp()
176 for (int x = 0; x < w; x += tilew, tile++) { in decomp()
177 int width = doTile ? Math.min(tilew, w - x) : scaledw; in decomp()
235 else if (tilew != w || tileh != h) in decomp()
236 sizeStr = new String(tilew + "x" + tileh); in decomp()
286 int totalJpegSize = 0, tilew, tileh, i, iter; in fullTest() local
303 for (tilew = doTile ? 8 : w, tileh = doTile ? 8 : h; ; in fullTest()
304 tilew *= 2, tileh *= 2) { in fullTest()
305 if (tilew > w) in fullTest()
306 tilew = w; in fullTest()
309 ntilesw = (w + tilew - 1) / tilew; in fullTest()
312 jpegBuf = new byte[ntilesw * ntilesh][TJ.bufSize(tilew, tileh, subsamp)]; in fullTest()
326 yuvImage = new YUVImage(tilew, yuvpad, tileh, subsamp); in fullTest()
338 for (int x = 0; x < w; x += tilew, tile++) { in fullTest()
339 int width = Math.min(tilew, w - x); in fullTest()
367 System.out.format("%-5d %-5d ", tilew, tileh); in fullTest()
381 tilew, tileh); in fullTest()
406 if (tilew == w && tileh == h && write) { in fullTest()
419 fileName, tilew, tileh); in fullTest()
421 if (tilew == w && tileh == h) break; in fullTest()
475 for (int tilew = doTile ? 16 : w, tileh = doTile ? 16 : h; ; in decompTest()
476 tilew *= 2, tileh *= 2) { in decompTest()
477 if (tilew > w) in decompTest()
478 tilew = w; in decompTest()
481 ntilesw = (w + tilew - 1) / tilew; in decompTest()
484 _w = w; _h = h; _tilew = tilew; _tileh = tileh; in decompTest()
496 System.out.format("%-5d %-5d ", tilew, tileh); in decompTest()
505 _w = h; _h = w; _tilew = tileh; _tileh = tilew; in decompTest()
598 if (w == tilew) in decompTest()
611 if (tilew == w && tileh == h) break; in decompTest()