Home | History | Annotate | Download | only in src

Lines Matching refs:new_allocated

66   HB_UInt new_allocated = buffer->allocated;
68 if (size > new_allocated)
72 while (size > new_allocated)
73 new_allocated += (new_allocated >> 1) + 8;
77 if ( REALLOC_ARRAY( buffer->positions, new_allocated, HB_PositionRec ) )
81 if ( REALLOC_ARRAY( buffer->in_string, new_allocated, HB_GlyphItemRec ) )
86 if ( REALLOC_ARRAY( buffer->alt_string, new_allocated, HB_GlyphItemRec ) )
97 if ( REALLOC_ARRAY( buffer->alt_string, new_allocated, HB_GlyphItemRec ) )
102 buffer->allocated = new_allocated;