Home
last modified time | relevance | path

Searched refs:maxw (Results 1 – 5 of 5) sorted by relevance

/external/qemu/android/utils/
Dmisc.c27 int nrows, ncols, r, c, n, maxw = 0; in print_tabular() local
31 if (len > maxw) in print_tabular()
32 maxw = len; in print_tabular()
34 maxw += 2; in print_tabular()
35 ncols = width/maxw; in print_tabular()
45 printf( "%-*s", maxw, strings[index] ); in print_tabular()
Dstralloc.c26 int nrows, ncols, r, c, n, maxw = 0; in stralloc_tabular() local
30 if (len > maxw) in stralloc_tabular()
31 maxw = len; in stralloc_tabular()
33 maxw += 2; in stralloc_tabular()
34 ncols = width/maxw; in stralloc_tabular()
44 stralloc_add_format( out, "%-*s", maxw, strings[index] ); in stralloc_tabular()
/external/pixman/test/
Dlowlevel-blt-bench.c307 int maxw, in bench_R() argument
313 if (maxw <= TILEWIDTH * 2 || maxh <= TILEWIDTH * 2) in bench_R()
324 int sx = rand () % (maxw - TILEWIDTH * 2); in bench_R()
326 int dx = rand () % (maxw - TILEWIDTH * 2); in bench_R()
342 int maxw, in bench_RT() argument
348 if (maxw <= TINYWIDTH * 2 || maxh <= TINYWIDTH * 2) in bench_RT()
359 int sx = rand () % (maxw - TINYWIDTH * 2); in bench_RT()
361 int dx = rand () % (maxw - TINYWIDTH * 2); in bench_RT()
/external/qemu/android/
Dhelp.c211 int pass, maxw = 0; in help_keys() local
238 if (len > maxw) in help_keys()
239 maxw = len; in help_keys()
241 PRINTF( " %-*s %s\n", maxw, temp, skin_key_command_description(cmd) ); in help_keys()
/external/qemu/distrib/sdl-1.2.15/src/video/
DSDL_surface.c468 int maxw, maxh; in SDL_UpperBlit() local
477 maxw = src->w - srcx; in SDL_UpperBlit()
478 if(maxw < w) in SDL_UpperBlit()
479 w = maxw; in SDL_UpperBlit()