Searched refs:existing_length (Results 1 – 2 of 2) sorted by relevance
403 size_t existing_length; in cat() local406 existing_length = strlen(*dest); in cat()407 both = resize(*dest, existing_length + n + 1); in cat()411 memcpy(both + existing_length, str, n); in cat()412 both[existing_length + n] = '\0'; in cat()433 size_t existing_length, size_t str_size) in ralloc_str_append() argument438 both = resize(*dest, existing_length + str_size + 1); in ralloc_str_append()442 memcpy(both + existing_length, str, str_size); in ralloc_str_append()443 both[existing_length + str_size] = '\0'; in ralloc_str_append()487 size_t existing_length; in ralloc_vasprintf_append() local[all …]
373 size_t existing_length, size_t str_size);