Searched refs:existing_length (Results 1 – 2 of 2) sorted by relevance
406 size_t existing_length; in cat() local409 existing_length = strlen(*dest); in cat()410 both = resize(*dest, existing_length + n + 1); in cat()414 memcpy(both + existing_length, str, n); in cat()415 both[existing_length + n] = '\0'; in cat()436 size_t existing_length, size_t str_size) in ralloc_str_append() argument441 both = resize(*dest, existing_length + str_size + 1); in ralloc_str_append()445 memcpy(both + existing_length, str, str_size); in ralloc_str_append()446 both[existing_length + str_size] = '\0'; in ralloc_str_append()490 size_t existing_length; in ralloc_vasprintf_append() local[all …]
373 size_t existing_length, size_t str_size);