Home
last modified time | relevance | path

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

/system/core/sh/
Dmemalloc.c206 int newlen = SHELL_ALIGN(stacknleft * 2 + 100); in growstackblock() local
218 sizeof(struct stack_block) - MINSIZE + newlen); in growstackblock()
222 stacknleft = newlen; in growstackblock()
239 char *p = stalloc(newlen); in growstackblock()
243 stacknleft += newlen; /* we just allocated */ in growstackblock()
/system/core/toolbox/
Dmount.c63 int newlen = extra->used_size + len; in add_extra_option() local
68 if (newlen >= extra->alloc_size) { in add_extra_option()
71 new = realloc(extra->str, newlen + 1); /* +1 for NUL */ in add_extra_option()
77 extra->alloc_size = newlen; in add_extra_option()