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

/freebsd-9.3-release/contrib/cvs/src/
H A Dsubr.c88 memory which is likely to get as big as MAX_INCR shouldn't be doing
90 so, we might as well limit the wasted memory to MAX_INCR or so
93 MIN_INCR and MAX_INCR should both be powers of two and we generally
98 #define MAX_INCR (2*1024*1024) macro
116 else if (*n >= MAX_INCR)
117 *n += MAX_INCR;
121 if (*n > MAX_INCR)
122 *n = MAX_INCR;

Completed in 92 milliseconds