Lines Matching refs:both
399 char *both;
404 both = resize(*dest, existing_length + n + 1);
405 if (unlikely(both == NULL))
408 memcpy(both + existing_length, str, n);
409 both[existing_length + n] = '\0';
411 *dest = both;
432 char *both;
435 both = resize(*dest, existing_length + str_size + 1);
436 if (unlikely(both == NULL))
439 memcpy(both + existing_length, str, str_size);
440 both[existing_length + str_size] = '\0';
442 *dest = both;
868 char *both;
873 both = linear_realloc(parent, *dest, existing_length + n + 1);
874 if (unlikely(both == NULL))
877 memcpy(both + existing_length, str, n);
878 both[existing_length + n] = '\0';
880 *dest = both;