Searched defs:cur_max (Results 1 - 3 of 3) sorted by relevance

/external/blktrace/btt/
H A Dmmap.c37 static off_t cur_min, cur, cur_max, total_size; variable
98 cur_max = cur_min + len;
99 return (cur < cur_max);
134 if ((cur + 512) > cur_max)
/external/freetype/src/base/
H A Dftdbgmem.c70 FT_Long cur_max; /* current maximum allocated size */ member in struct:FT_MemSourceRec_
497 node->cur_max = 0;
566 if ( size > (FT_ULong)source->cur_max )
567 source->cur_max = size;
979 source->cur_size, source->max_size, source->cur_max,
H A Dftstroke.c327 FT_UInt cur_max = old_max; local
331 while ( cur_max < new_max )
332 cur_max += ( cur_max >> 1 ) + 16;
334 if ( FT_RENEW_ARRAY( border->points, old_max, cur_max ) ||
335 FT_RENEW_ARRAY( border->tags, old_max, cur_max ) )
338 border->max_points = cur_max;

Completed in 215 milliseconds