Lines Matching refs:both
405 char *both;
410 both = resize(*dest, existing_length + n + 1);
411 if (unlikely(both == NULL))
414 memcpy(both + existing_length, str, n);
415 both[existing_length + n] = '\0';
417 *dest = both;
438 char *both;
441 both = resize(*dest, existing_length + str_size + 1);
442 if (unlikely(both == NULL))
445 memcpy(both + existing_length, str, str_size);
446 both[existing_length + str_size] = '\0';
448 *dest = both;
874 char *both;
879 both = linear_realloc(parent, *dest, existing_length + n + 1);
880 if (unlikely(both == NULL))
883 memcpy(both + existing_length, str, n);
884 both[existing_length + n] = '\0';
886 *dest = both;