HomeSort by relevance Sort by last modified time
    Searched refs:new_max (Results 1 - 15 of 15) sorted by null

  /external/freetype/src/base/
ftgloadr.c 210 FT_UInt new_max, old_max; local
214 new_max = base->n_points + current->n_points + n_points;
217 if ( new_max > old_max )
219 new_max = FT_PAD_CEIL( new_max, 8 );
221 if ( new_max > FT_OUTLINE_POINTS_MAX )
224 if ( FT_RENEW_ARRAY( base->points, old_max, new_max ) ||
225 FT_RENEW_ARRAY( base->tags, old_max, new_max ) )
231 old_max * 2, new_max * 2 ) )
234 FT_ARRAY_MOVE( loader->base.extra_points + new_max,
281 FT_UInt new_max, old_max; local
    [all...]
ftstroke.c 263 FT_UInt new_max = border->num_points + new_points; local
267 if ( new_max > old_max )
273 while ( cur_max < new_max )
    [all...]
  /external/qemu/android/utils/
stralloc.c 66 unsigned new_max = old_max; local
68 while (new_max < len) {
69 unsigned new_max2 = new_max + (new_max >> 1) + 16;
70 if (new_max2 < new_max)
72 new_max = new_max2;
75 s->s = realloc( s->s, new_max );
78 __FUNCTION__, new_max );
81 s->a = new_max;
  /external/freetype/src/autofit/
afhints.c 36 FT_Int new_max = old_max; local
46 new_max += ( new_max >> 2 ) + 4;
47 if ( new_max < old_max || new_max > big_max )
48 new_max = big_max;
50 if ( FT_RENEW_ARRAY( axis->segments, old_max, new_max ) )
53 axis->max_segments = new_max;
79 FT_Int new_max = old_max; local
89 new_max += ( new_max >> 2 ) + 4
444 FT_UInt old_max, new_max; local
    [all...]
  /external/freetype/src/pshinter/
pshrec.c 66 FT_UInt new_max = count; local
70 if ( new_max > old_max )
73 new_max = FT_PAD_CEIL( new_max, 8 );
74 if ( !FT_RENEW_ARRAY( table->hints, old_max, new_max ) )
75 table->max_hints = new_max;
141 FT_UInt new_max = ( count + 7 ) >> 3; local
145 if ( new_max > old_max )
147 new_max = FT_PAD_CEIL( new_max, 8 )
238 FT_UInt new_max = count; local
    [all...]
  /external/chromium/third_party/libevent/
signal.c 156 int new_max = evsignal + 1; local
159 p = realloc(sig->sh_old, new_max * sizeof(*sig->sh_old));
166 0, (new_max - sig->sh_old_max) * sizeof(*sig->sh_old));
168 sig->sh_old_max = new_max;
  /external/qemu/telephony/
gsm.c 288 int new_max = old_max; local
291 while (new_max < new_count) {
292 new_max += (new_max >> 1) + 4;
294 new_data = realloc( old_data, new_max );
300 rope->max = new_max;
  /external/freetype/src/truetype/
ttinterp.h 247 FT_ULong new_max );
ttinterp.c 502 /* new_max :: The new capacity (size) of the buffer. */
518 FT_ULong new_max )
524 if ( *size < new_max )
526 if ( FT_REALLOC( *pbuff, *size * multiplier, new_max * multiplier ) )
528 *size = new_max;
    [all...]
  /external/libpng/
pngpread.c 694 png_size_t new_max; local
703 new_max = png_ptr->save_buffer_size + png_ptr->current_buffer_size + 256;
706 (png_uint_32)new_max);
714 png_ptr->save_buffer_max = new_max;
    [all...]
  /external/qemu/distrib/libpng-1.2.19/
pngpread.c 622 png_size_t new_max; local
630 new_max = png_ptr->save_buffer_size + png_ptr->current_buffer_size + 256;
633 (png_uint_32)new_max);
636 png_ptr->save_buffer_max = new_max;
    [all...]
  /sdk/emulator/qemud/
qemud.c 386 int new_max = old_max + (old_max >> 1) + 4; local
389 xrenew( l->events, new_max );
390 xrenew( l->hooks, new_max );
391 l->max_fds = new_max;
    [all...]
  /external/qemu/android/
console.c 138 int new_max = old_max + (old_max >> 1) + 4; local
140 Redir new_redirs = realloc( global->redirs, new_max*sizeof(global->redirs[0]) );
145 global->max_redirs = new_max;
    [all...]
  /external/blktrace/
blkparse.c 507 int new_max = (cpu + CPUS_PER_LONG) & ~(CPUS_PER_LONG - 1); local
508 unsigned long *map = malloc(new_max / sizeof(long));
510 memset(map, 0, new_max / sizeof(long));
518 pdi->cpu_map_max = new_max;
    [all...]
  /external/v8/src/
jsregexp.cc 3606 int new_max = (max == kInfinity) ? max : max - min; local
    [all...]

Completed in 216 milliseconds