Home | History | Annotate | Download | only in pshinter

Lines Matching refs:new_max

66     FT_UInt   new_max = count;
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;
145 if ( new_max > old_max )
147 new_max = FT_PAD_CEIL( new_max, 8 );
148 if ( !FT_RENEW_ARRAY( mask->bytes, old_max, new_max ) )
149 mask->max_bits = new_max * 8;
238 FT_UInt new_max = count;
242 if ( new_max > old_max )
244 new_max = FT_PAD_CEIL( new_max, 8 );
245 if ( !FT_RENEW_ARRAY( table->masks, old_max, new_max ) )
246 table->max_masks = new_max;