Searched defs:maxw (Results 1 - 6 of 6) sorted by relevance

/external/qemu/android/utils/
H A Dmisc.c27 int nrows, ncols, r, c, n, maxw = 0; local
31 if (len > maxw)
32 maxw = len;
34 maxw += 2;
35 ncols = width/maxw;
45 printf( "%-*s", maxw, strings[index] );
H A Dstralloc.c26 int nrows, ncols, r, c, n, maxw = 0; local
30 if (len > maxw)
31 maxw = len;
33 maxw += 2;
34 ncols = width/maxw;
44 stralloc_add_format( out, "%-*s", maxw, strings[index] );
/external/pixman/test/
H A Dlowlevel-blt-bench.c307 int maxw,
313 if (maxw <= TILEWIDTH * 2 || maxh <= TILEWIDTH * 2)
315 printf("error: maxw <= TILEWIDTH * 2 || maxh <= TILEWIDTH * 2\n");
324 int sx = rand () % (maxw - TILEWIDTH * 2);
326 int dx = rand () % (maxw - TILEWIDTH * 2);
342 int maxw,
348 if (maxw <= TINYWIDTH * 2 || maxh <= TINYWIDTH * 2)
350 printf("error: maxw <= TINYWIDTH * 2 || maxh <= TINYWIDTH * 2\n");
359 int sx = rand () % (maxw - TINYWIDTH * 2);
361 int dx = rand () % (maxw
301 bench_R(pixman_op_t op, pixman_image_t * src_img, pixman_image_t * mask_img, pixman_image_t * dst_img, int64_t n, pixman_composite_func_t func, int maxw, int maxh) argument
336 bench_RT(pixman_op_t op, pixman_image_t * src_img, pixman_image_t * mask_img, pixman_image_t * dst_img, int64_t n, pixman_composite_func_t func, int maxw, int maxh) argument
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/
H A DSDL_surface.c468 int maxw, maxh; local
477 maxw = src->w - srcx;
478 if(maxw < w)
479 w = maxw;
/external/pdfium/core/src/fxcodec/codec/
H A Dfx_codec_jpx_opj.cpp132 int maxw, maxh, max, i, offset, upb; local
136 maxw = (int)img->comps[0].w;
138 max = maxw * maxh;
165 int maxw, maxh, max, offset, upb; local
170 maxw = (int)img->comps[0].w;
172 max = maxw * maxh;
180 for(j = 0; j < maxw; j += 2) {
201 img->comps[1].w = maxw;
203 img->comps[2].w = maxw;
205 img->comps[1].w = (OPJ_UINT32)maxw;
218 int maxw, maxh, max, offset, upb; local
[all...]
/external/qemu/android/
H A Dhelp.c212 int pass, maxw = 0; local
239 if (len > maxw)
240 maxw = len;
242 PRINTF( " %-*s %s\n", maxw, temp, skin_key_command_description(cmd) );

Completed in 4446 milliseconds