Home | History | Annotate | Download | only in sed

Lines Matching defs:inactive

212   int inactive;
213 inactive = lb->active - lb->text;
215 /* If the inactive part has got to more than two thirds of the buffer,
217 if (inactive > lb->alloc * 2)
222 inactive = 0;
234 lb->text = REALLOC(lb->text, inactive + lb->alloc, char);
235 lb->active = lb->text + inactive;
441 /* Remove the inactive portion in the destination buffer. */