Home
last modified time | relevance | path

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

/coreutils/src/
Denv.c260 idx_t half_alloc; member
275 idx_t old_half_alloc = ss->half_alloc; in splitbuf_grow()
277 ss->argv = xpalloc (ss->argv, &ss->half_alloc, 1, in splitbuf_grow()
279 memmove (ss->argv + ss->half_alloc, ss->argv + old_half_alloc, string_bytes); in splitbuf_grow()
287 if (ss->half_alloc * sizeof *ss->argv <= string_bytes) in splitbuf_append_byte()
289 ((char *) (ss->argv + ss->half_alloc))[string_bytes] = c; in splitbuf_append_byte()
302 if (ss->half_alloc <= argc + ss->extra_argc + 1) in check_start_new_arg()
317 char *stringbase = (char *) (ss->argv + ss->half_alloc); in splitbuf_finishup()
355 ss.half_alloc = extra_argc + 2; in build_argv()