Home | History | Annotate | Download | only in kconfig

Lines Matching full:new_size

798 	int new_size = text_size + size + 1;
799 if (new_size > text_asize) {
800 new_size += START_STRSIZE - 1;
801 new_size &= -START_STRSIZE;
802 text = realloc(text, new_size);
803 text_asize = new_size;
1483 int new_size = b->yy_buf_size * 2;
1485 if ( new_size <= 0 )