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

12

  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/truetype/
ttinterp.h 321 FT_ULong new_max );
ttinterp.c 513 /* new_max :: The new capacity (size) of the buffer. */
529 FT_ULong new_max )
535 if ( *size < new_max )
537 if ( FT_REALLOC( *pbuff, *size * multiplier, new_max * multiplier ) )
539 *size = new_max;
    [all...]
  /device/generic/goldfish/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/chromium_org/third_party/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.46/
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...]
  /art/compiler/dex/
mir_graph.h 833 * @details Can fail setting the new max if there are more temps being used than the new_max.
834 * @param new_max The new maximum number of non-special compiler temporaries.
837 bool SetMaxAvailableNonSpecialCompilerTemps(size_t new_max) {
838 if (new_max < GetNumNonSpecialCompilerTemps()) {
841 max_available_non_special_compiler_temps_ = new_max;
    [all...]
  /external/chromium_org/third_party/cython/src/Cython/Utility/
ModuleSetupCode.c 465 int new_max = __pyx_code_cache.max_count + 64; local
467 __pyx_code_cache.entries, (size_t)new_max*sizeof(__Pyx_CodeObjectCacheEntry));
472 __pyx_code_cache.max_count = new_max;
  /external/chromium_org/third_party/skia/src/ports/
SkFontMgr_fontconfig.cpp 252 SkFixed new_min, SkFixed new_max)
255 SkASSERT(new_min <= new_max);
256 return new_min + SkMulDiv(value - old_min, new_max - new_min, old_max - old_min);
    [all...]
  /external/qemu/android/
console.c 147 int new_max = old_max + (old_max >> 1) + 4; local
149 Redir new_redirs = realloc( global->redirs, new_max*sizeof(global->redirs[0]) );
154 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/chromium_org/third_party/freetype/src/base/
ftstroke.c 321 FT_UInt new_max = border->num_points + new_points; local
325 if ( new_max > old_max )
331 while ( cur_max < new_max )
    [all...]
  /external/freetype/src/base/
ftstroke.c 321 FT_UInt new_max = border->num_points + new_points; local
325 if ( new_max > old_max )
331 while ( cur_max < new_max )
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
ftstroke.c 321 FT_UInt new_max = border->num_points + new_points; local
325 if ( new_max > old_max )
331 while ( cur_max < new_max )
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/test/test_ttk/
test_widgets.py 513 new_max = max + 10
514 self.scale.set(new_max)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/test/test_ttk/
test_widgets.py 513 new_max = max + 10
514 self.scale.set(new_max)
    [all...]
  /external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
sctp_usrreq.c 6114 uint32_t new_init, new_min, new_max; local
    [all...]
  /external/chromium_org/third_party/freetype/src/truetype/
ttinterp.c 513 /* new_max :: The new capacity (size) of the buffer. */
529 FT_ULong new_max )
535 if ( *size < new_max )
537 if ( FT_REALLOC( *pbuff, *size * multiplier, new_max * multiplier ) )
539 *size = new_max;
    [all...]
  /external/freetype/src/truetype/
ttinterp.c 513 /* new_max :: The new capacity (size) of the buffer. */
529 FT_ULong new_max )
535 if ( *size < new_max )
537 if ( FT_REALLOC( *pbuff, *size * multiplier, new_max * multiplier ) )
539 *size = new_max;
    [all...]
  /external/chromium_org/third_party/bintrees/bintrees/
cwalker.c 3577 int new_max = __pyx_code_cache.max_count + 64; local
    [all...]
qavltree.c 3180 int new_max = __pyx_code_cache.max_count + 64; local
    [all...]
qbintree.c 3175 int new_max = __pyx_code_cache.max_count + 64; local
    [all...]
qrbtree.c 3177 int new_max = __pyx_code_cache.max_count + 64; local
    [all...]
  /external/chromium_org/v8/src/
jsregexp.cc 4952 int new_max = (max == kInfinity) ? max : max - min; local
    [all...]

Completed in 2138 milliseconds

12