Searched refs:new_size (Results 1 – 1 of 1) sorted by relevance
67 int new_size = text_size + size + 1; in append_string() local68 if (new_size > text_asize) { in append_string()69 new_size += START_STRSIZE - 1; in append_string()70 new_size &= -START_STRSIZE; in append_string()71 text = xrealloc(text, new_size); in append_string()72 text_asize = new_size; in append_string()
Completed in 3 milliseconds