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

1 2

  /external/freetype/src/base/
ftgloadr.c 211 FT_UInt new_max, old_max; local
215 new_max = (FT_UInt)base->n_points + (FT_UInt)current->n_points +
219 if ( new_max > old_max )
221 new_max = FT_PAD_CEIL( new_max, 8 );
223 if ( new_max > FT_OUTLINE_POINTS_MAX )
226 if ( FT_RENEW_ARRAY( base->points, old_max, new_max ) ||
227 FT_RENEW_ARRAY( base->tags, old_max, new_max ) )
233 old_max * 2, new_max * 2 ) )
236 FT_ARRAY_MOVE( loader->base.extra_points + new_max,
286 FT_UInt new_max, old_max; local
    [all...]
ftstroke.c 331 FT_UInt new_max = border->num_points + new_points; local
335 if ( new_max > old_max )
341 while ( cur_max < new_max )
    [all...]
  /external/pdfium/third_party/freetype/src/base/
ftgloadr.c 211 FT_UInt new_max, old_max; local
215 new_max = (FT_UInt)base->n_points + (FT_UInt)current->n_points +
219 if ( new_max > old_max )
221 new_max = FT_PAD_CEIL( new_max, 8 );
223 if ( new_max > FT_OUTLINE_POINTS_MAX )
226 if ( FT_RENEW_ARRAY( base->points, old_max, new_max ) ||
227 FT_RENEW_ARRAY( base->tags, old_max, new_max ) )
233 old_max * 2, new_max * 2 ) )
236 FT_ARRAY_MOVE( loader->base.extra_points + new_max,
286 FT_UInt new_max, old_max; local
    [all...]
ftstroke.c 331 FT_UInt new_max = border->num_points + new_points; local
335 if ( new_max > old_max )
341 while ( cur_max < new_max )
    [all...]
  /external/freetype/src/autofit/
afhints.c 57 FT_Int new_max = old_max; local
67 new_max += ( new_max >> 2 ) + 4;
68 if ( new_max < old_max || new_max > big_max )
69 new_max = big_max;
73 if ( FT_NEW_ARRAY( axis->segments, new_max ) )
80 if ( FT_RENEW_ARRAY( axis->segments, old_max, new_max ) )
84 axis->max_segments = new_max;
122 FT_Int new_max = old_max local
724 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 )
235 FT_UInt new_max = count; local
    [all...]
  /external/pdfium/third_party/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 )
235 FT_UInt new_max = count; local
    [all...]
  /art/runtime/base/
histogram-inl.h 36 Value new_max = ((value + 1) / bucket_width_ + 1) * bucket_width_; local
37 DCHECK_GT(new_max, max_);
38 GrowBuckets(new_max);
67 inline void Histogram<Value>::GrowBuckets(Value new_max) {
68 while (max_ < new_max) {
  /external/libevent/
signal.c 226 int new_max = evsignal + 1; local
229 p = mm_realloc(sig->sh_old, new_max * sizeof(*sig->sh_old));
236 0, (new_max - sig->sh_old_max) * sizeof(*sig->sh_old));
238 sig->sh_old_max = new_max;
  /external/pdfium/third_party/freetype/src/cid/
cidload.c 441 FT_UInt new_max = FT_PAD_CEIL( num_subrs + 1, 4 ); local
444 if ( new_max <= max_offsets )
450 if ( FT_RENEW_ARRAY( offsets, max_offsets, new_max ) )
453 max_offsets = new_max;
  /external/pdfium/third_party/freetype/src/truetype/
ttinterp.h 312 FT_ULong new_max );
  /external/iputils/
rdisc.c 1446 int new_max = max_preference(); local
1461 int new_max = max_preference(); local
    [all...]
  /external/freetype/src/pfr/
pfrload.c 368 FT_UInt new_max = FT_PAD_CEIL( phy_font->num_strikes + count, 4 ); local
373 new_max ) )
376 phy_font->max_strikes = new_max;
  /external/skia/src/ports/
SkFontConfigInterface_direct.cpp 365 SkFixed new_min, SkFixed new_max)
368 SkASSERT(new_min <= new_max);
369 return new_min + SkMulDiv(value - old_min, new_max - new_min, old_max - old_min);
SkFontMgr_fontconfig.cpp 278 SkFixed new_min, SkFixed new_max)
281 SkASSERT(new_min <= new_max);
282 return new_min + SkMulDiv(value - old_min, new_max - new_min, old_max - old_min);
    [all...]
  /external/e2fsprogs/lib/ext2fs/
blkmap64_rb.c 278 static void rb_truncate(__u64 new_max, struct rb_root *root)
287 if ((ext->start + ext->count - 1) <= new_max)
289 else if (ext->start > new_max) {
295 ext->count = new_max - ext->start + 1;
  /external/freetype/src/truetype/
ttinterp.h 447 FT_ULong new_max );
  /external/libpng/
pngpread.c 484 png_size_t new_max; local
493 new_max = png_ptr->save_buffer_size + png_ptr->current_buffer_size + 256;
496 (png_size_t)new_max);
509 png_ptr->save_buffer_max = new_max;
  /external/pdfium/third_party/libpng16/
pngpread.c 484 png_size_t new_max; local
493 new_max = png_ptr->save_buffer_size + png_ptr->current_buffer_size + 256;
496 (png_size_t)new_max);
506 png_ptr->save_buffer_max = new_max;
  /external/skia/third_party/libpng/
pngpread.c 482 png_size_t new_max; local
491 new_max = png_ptr->save_buffer_size + png_ptr->current_buffer_size + 256;
494 (png_size_t)new_max);
515 png_ptr->save_buffer_max = new_max;
  /device/generic/goldfish/qemud/
qemud.c 387 int new_max = old_max + (old_max >> 1) + 4; local
390 xrenew( l->events, new_max );
391 xrenew( l->hooks, new_max );
392 l->max_fds = new_max;
    [all...]
  /external/syslinux/com32/lib/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/v8/src/compiler/
operation-typer.cc 98 double new_max = current_max; local
102 new_max = V8_INFINITY;
105 new_max = max;
111 return Type::Range(new_min, new_max, zone());
    [all...]
typer.cc 1200 double new_max = current_max; local
    [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...]

Completed in 1406 milliseconds

1 2