Home
last modified time | relevance | path

Searched refs:new_size (Results 1 – 2 of 2) sorted by relevance

/busybox-1.35.0/scripts/kconfig/
Dzconf.l51 int new_size = text_size + size + 1; in append_string() local
56 if (new_size > text_asize) { in append_string()
57 new_size += START_STRSIZE - 1; in append_string()
58 new_size &= -START_STRSIZE; in append_string()
59 text = realloc(text, new_size); in append_string()
60 text_asize = new_size; in append_string()
Dlex.zconf.c_shipped786 int new_size = text_size + size + 1;
792 if (new_size > text_asize) {
793 new_size += START_STRSIZE - 1;
794 new_size &= -START_STRSIZE;
795 text = realloc(text, new_size);
796 text_asize = new_size;
1477 int new_size = b->yy_buf_size * 2;
1479 if ( new_size <= 0 )