Lines Matching defs:both
377 char *both;
382 both = resize(*dest, existing_length + n + 1);
383 if (unlikely(both == NULL))
386 memcpy(both + existing_length, str, n);
387 both[existing_length + n] = '\0';
389 *dest = both;
410 char *both;
413 both = resize(*dest, existing_length + str_size + 1);
414 if (unlikely(both == NULL))
417 memcpy(both + existing_length, str, str_size);
418 both[existing_length + str_size] = '\0';
420 *dest = both;
875 char *both;
880 both = linear_realloc(parent, *dest, existing_length + n + 1);
881 if (unlikely(both == NULL))
884 memcpy(both + existing_length, str, n);
885 both[existing_length + n] = '\0';
887 *dest = both;