Searched refs:copy (Results 1 – 2 of 2) sorted by relevance
32 void *copy = malloc (size); in __libc_scratch_buffer_dupfree() local33 return copy != NULL ? memcpy (copy, data, size) : NULL; in __libc_scratch_buffer_dupfree()37 void *copy = realloc (data, size); in __libc_scratch_buffer_dupfree() local38 return copy != NULL ? copy : data; in __libc_scratch_buffer_dupfree()
54 char *copy; in do_test() local63 copy = strdup (line); in do_test()64 if (copy == NULL) in do_test()67 p = (char **) tsearch (copy, &root, in do_test()69 if (*p != copy) in do_test()71 free (copy); in do_test()
Completed in 7 milliseconds