Searched refs:old_max (Results 1 - 23 of 23) sorted by relevance

/external/freetype/src/base/
H A Dftgloadr.c211 FT_UInt new_max, old_max; local
217 old_max = loader->max_points;
219 if ( new_max > old_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 ) )
237 loader->base.extra_points + old_max,
238 old_max );
248 old_max = loader->max_contours;
251 if ( new_max > old_max )
286 FT_UInt new_max, old_max; local
[all...]
H A Dftstroke.c330 FT_UInt old_max = border->max_points; local
335 if ( new_max > old_max )
337 FT_UInt cur_max = old_max;
344 if ( FT_RENEW_ARRAY( border->points, old_max, cur_max ) ||
345 FT_RENEW_ARRAY( border->tags, old_max, cur_max ) )
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/base/
H A Dftgloadr.c211 FT_UInt new_max, old_max; local
217 old_max = loader->max_points;
219 if ( new_max > old_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 ) )
237 loader->base.extra_points + old_max,
238 old_max );
248 old_max = loader->max_contours;
251 if ( new_max > old_max )
286 FT_UInt new_max, old_max; local
[all...]
H A Dftstroke.c330 FT_UInt old_max = border->max_points; local
335 if ( new_max > old_max )
337 FT_UInt cur_max = old_max;
344 if ( FT_RENEW_ARRAY( border->points, old_max, cur_max ) ||
345 FT_RENEW_ARRAY( border->tags, old_max, cur_max ) )
/external/pdfium/third_party/freetype/src/base/
H A Dftgloadr.c211 FT_UInt new_max, old_max; local
217 old_max = loader->max_points;
219 if ( new_max > old_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 ) )
237 loader->base.extra_points + old_max,
238 old_max );
248 old_max = loader->max_contours;
251 if ( new_max > old_max )
286 FT_UInt new_max, old_max; local
[all...]
H A Dftstroke.c330 FT_UInt old_max = border->max_points; local
335 if ( new_max > old_max )
337 FT_UInt cur_max = old_max;
344 if ( FT_RENEW_ARRAY( border->points, old_max, cur_max ) ||
345 FT_RENEW_ARRAY( border->tags, old_max, cur_max ) )
/external/chromium-trace/catapult/third_party/graphy/graphy/backends/google_chart_api/
H A Dutil.py217 def ScaleData(data, old_min, old_max, new_min, new_max):
218 """Scale the input data so that the range old_min-old_max maps to
226 if old_min == old_max:
229 scale = (new_max - new_min) / float(old_max - old_min)
H A Dbase_encoder_test.py444 def FakeScale(self, data, old_min, old_max, new_min, new_max):
446 self.max = old_max
/external/freetype/src/autofit/
H A Dafhints.c56 FT_Int old_max = axis->max_segments; local
57 FT_Int new_max = old_max;
61 if ( old_max >= big_max )
68 if ( new_max < old_max || new_max > big_max )
80 if ( FT_RENEW_ARRAY( axis->segments, old_max, new_max ) )
121 FT_Int old_max = axis->max_edges; local
122 FT_Int new_max = old_max;
126 if ( old_max >= big_max )
133 if ( new_max < old_max || new_max > big_max )
145 if ( FT_RENEW_ARRAY( axis->edges, old_max, new_ma
724 FT_UInt old_max, new_max; local
[all...]
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/autofit/
H A Dafhints.c56 FT_Int old_max = axis->max_segments; local
57 FT_Int new_max = old_max;
61 if ( old_max >= big_max )
68 if ( new_max < old_max || new_max > big_max )
80 if ( FT_RENEW_ARRAY( axis->segments, old_max, new_max ) )
120 FT_Int old_max = axis->max_edges; local
121 FT_Int new_max = old_max;
125 if ( old_max >= big_max )
132 if ( new_max < old_max || new_max > big_max )
144 if ( FT_RENEW_ARRAY( axis->edges, old_max, new_ma
703 FT_UInt old_max, new_max; local
[all...]
/external/mesa3d/src/mesa/state_tracker/
H A Dst_atom_texture.c266 const GLuint old_max = *num_textures; local
270 if (samplers_used == 0x0 && old_max == 0)
289 else if (samplers_used == 0 && unit >= old_max) {
297 /* Ex: if old_max = 3 and *num_textures = 1, we need to pass an
301 new_count = MAX2(*num_textures, old_max);
H A Dst_atom_sampler.c218 const GLuint old_max = *num_samplers; local
240 else if (samplers_used != 0 || unit < old_max) {
/external/skia/src/fonts/
H A DSkFontMgr_fontconfig.cpp161 int old_min, int old_max, int new_min, int new_max) {
162 SkASSERT(old_min < old_max);
165 new_max - new_min, old_max - old_min);
160 map_range(int value, int old_min, int old_max, int new_min, int new_max) argument
/external/freetype/src/pshinter/
H A Dpshrec.c65 FT_UInt old_max = table->max_hints; local
70 if ( new_max > old_max )
74 if ( !FT_RENEW_ARRAY( table->hints, old_max, new_max ) )
140 FT_UInt old_max = ( mask->max_bits + 7 ) >> 3; local
145 if ( new_max > old_max )
148 if ( !FT_RENEW_ARRAY( mask->bytes, old_max, new_max ) )
234 FT_UInt old_max = table->max_masks; local
239 if ( new_max > old_max )
242 if ( !FT_RENEW_ARRAY( table->masks, old_max, new_max ) )
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/pshinter/
H A Dpshrec.c65 FT_UInt old_max = table->max_hints; local
70 if ( new_max > old_max )
74 if ( !FT_RENEW_ARRAY( table->hints, old_max, new_max ) )
140 FT_UInt old_max = ( mask->max_bits + 7 ) >> 3; local
145 if ( new_max > old_max )
148 if ( !FT_RENEW_ARRAY( mask->bytes, old_max, new_max ) )
234 FT_UInt old_max = table->max_masks; local
239 if ( new_max > old_max )
242 if ( !FT_RENEW_ARRAY( table->masks, old_max, new_max ) )
/external/pdfium/third_party/freetype/src/pshinter/
H A Dpshrec.c65 FT_UInt old_max = table->max_hints; local
70 if ( new_max > old_max )
74 if ( !FT_RENEW_ARRAY( table->hints, old_max, new_max ) )
140 FT_UInt old_max = ( mask->max_bits + 7 ) >> 3; local
145 if ( new_max > old_max )
148 if ( !FT_RENEW_ARRAY( mask->bytes, old_max, new_max ) )
234 FT_UInt old_max = table->max_masks; local
239 if ( new_max > old_max )
242 if ( !FT_RENEW_ARRAY( table->masks, old_max, new_max ) )
/external/chromium-trace/catapult/devil/devil/android/
H A Dbattery_utils_test.py265 old_max = battery_utils._MAX_CHARGE_ERROR
270 battery_utils._MAX_CHARGE_ERROR = old_max
280 old_max = battery_utils._MAX_CHARGE_ERROR
285 battery_utils._MAX_CHARGE_ERROR = old_max
/external/iputils/
H A Drdisc.c1398 int old_max = max_preference(); local
1413 tp->preference == old_max)
1420 if (preference > old_max)
/external/skia/src/ports/
H A DSkFontMgr_fontconfig.cpp259 SkFixed old_min, SkFixed old_max,
262 SkASSERT(old_min < old_max);
264 return new_min + SkMulDiv(value - old_min, new_max - new_min, old_max - old_min);
258 map_range(SkFixed value, SkFixed old_min, SkFixed old_max, SkFixed new_min, SkFixed new_max) argument
/external/opencv3/3rdparty/libpng/
H A Dpngwutil.c452 int old_max; local
454 old_max = comp->max_output_ptr;
466 png_memcpy(comp->output_ptr, old_ptr, old_max
508 int old_max; local
510 old_max = comp->max_output_ptr;
524 old_max * png_sizeof(png_charp));
/external/freetype/src/sfnt/
H A Dttcmap.c2942 FT_UInt32 old_max = cmap->max_results; local
2950 if ( FT_QRENEW_ARRAY( cmap->results, old_max, num_results ) )
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/sfnt/
H A Dttcmap.c2889 FT_UInt32 old_max = cmap->max_results; local
2897 if ( FT_QRENEW_ARRAY( cmap->results, old_max, num_results ) )
/external/pdfium/third_party/freetype/src/sfnt/
H A Dttcmap.c2883 FT_UInt32 old_max = cmap->max_results; local
2891 if ( FT_QRENEW_ARRAY( cmap->results, old_max, num_results ) )

Completed in 5310 milliseconds