Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/libjpeg-turbo/
Dtjbench.c144 int subsamp, int jpegQual, char *fileName, int tilew, in decomp() argument
156 int ntilesw = (w + tilew - 1) / tilew, ntilesh = (h + tileh - 1) / tileh; in decomp()
180 int width = doTile ? tilew : scaledw; in decomp()
201 col++, tile++, dstPtr2 += ps * tilew) { in decomp()
202 int width = doTile ? min(tilew, w - col * tilew) : scaledw; in decomp()
265 else if (tilew != w || tileh != h) in decomp()
266 snprintf(sizeStr, 24, "%dx%d", tilew, tileh); in decomp()
327 int totalJpegSize = 0, row, col, i, tilew = w, tileh = h, retval = 0; in fullTest() local
345 for (tilew = doTile ? 8 : w, tileh = doTile ? 8 : h; ; in fullTest()
346 tilew *= 2, tileh *= 2) { in fullTest()
[all …]
/third_party/libjpeg-turbo/
Dtjbench.c141 int subsamp, int jpegQual, char *fileName, int tilew, in decomp() argument
153 int ntilesw = (w + tilew - 1) / tilew, ntilesh = (h + tileh - 1) / tileh; in decomp()
177 int width = doTile ? tilew : scaledw; in decomp()
198 col++, tile++, dstPtr2 += ps * tilew) { in decomp()
199 int width = doTile ? min(tilew, w - col * tilew) : scaledw; in decomp()
260 else if (tilew != w || tileh != h) in decomp()
261 snprintf(sizeStr, 24, "%dx%d", tilew, tileh); in decomp()
322 int totalJpegSize = 0, row, col, i, tilew = w, tileh = h, retval = 0; in fullTest() local
340 for (tilew = doTile ? 8 : w, tileh = doTile ? 8 : h; ; in fullTest()
341 tilew *= 2, tileh *= 2) { in fullTest()
[all …]
/third_party/flutter/skia/third_party/externals/libjpeg-turbo/
Dtjbench.c140 int subsamp, int jpegQual, char *fileName, int tilew, int tileh) in decomp() argument
151 int ntilesw = (w + tilew - 1) / tilew, ntilesh = (h + tileh - 1) / tileh; in decomp()
172 int width = doTile ? tilew : scaledw; in decomp()
191 col++, tile++, dstPtr2 += ps * tilew) { in decomp()
192 int width = doTile ? min(tilew, w - col * tilew) : scaledw; in decomp()
253 else if (tilew != w || tileh != h) in decomp()
254 snprintf(sizeStr, 20, "%dx%d", tilew, tileh); in decomp()
315 int totalJpegSize = 0, row, col, i, tilew = w, tileh = h, retval = 0; in fullTest() local
330 for (tilew = doTile ? 8 : w, tileh = doTile ? 8 : h; ; in fullTest()
331 tilew *= 2, tileh *= 2) { in fullTest()
[all …]
/third_party/libjpeg-turbo/java/
DTJBench.java165 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()
[all …]
/third_party/flutter/skia/third_party/externals/libjpeg-turbo/java/
DTJBench.java163 String fileName, int tilew, int tileh) throws Exception { in decomp() argument
186 int width = doTile ? tilew : scaledw; in decomp()
201 for (int x = 0; x < w; x += tilew, tile++) { in decomp()
202 int width = doTile ? Math.min(tilew, w - x) : scaledw; in decomp()
274 else if (tilew != w || tileh != h) in decomp()
275 sizeStr = new String(tilew + "x" + tileh); in decomp()
326 int totalJpegSize = 0, tilew, tileh, i, iter; in fullTest() local
342 for (tilew = doTile ? 8 : w, tileh = doTile ? 8 : h; ; in fullTest()
343 tilew *= 2, tileh *= 2) { in fullTest()
344 if (tilew > w) in fullTest()
[all …]
/third_party/libdrm/radeon/
Dradeon_surface.c332 uint32_t xalign, yalign, zalign, tilew; in r6_surface_init_1d() local
336 tilew = 8; in r6_surface_init_1d()
337 xalign = surf_man->hw_info.group_bytes / (tilew * surf->bpe * surf->nsamples); in r6_surface_init_1d()
338 xalign = MAX2(tilew, xalign); in r6_surface_init_1d()
339 yalign = tilew; in r6_surface_init_1d()
365 uint32_t xalign, yalign, zalign, tilew; in r6_surface_init_2d() local
369 tilew = 8; in r6_surface_init_2d()
372 (tilew * surf->bpe * surf->nsamples); in r6_surface_init_2d()
373 xalign = MAX2(tilew * surf_man->hw_info.num_banks, xalign); in r6_surface_init_2d()
376 yalign = tilew * surf_man->hw_info.num_pipes; in r6_surface_init_2d()
[all …]
/third_party/ffmpeg/libavcodec/
Dj2kenc.c431 int tilew = tile->comp[compno].coord[0][1] - tile->comp[compno].coord[0][0]; in compute_rates() local
436 … tile->layer_rates[layno] += (double)(tilew * tileh) * s->ncomponents * s->cbps[compno] / in compute_rates()