dst                48 common/libc/string/memcpy.c memcpy(void *dst, const void *src, size_t len)
dst                65 common/libc/string/memcpy.c 	if ((uintptr_t)dst % sizeof(long) == 0 &&
dst                69 common/libc/string/memcpy.c 		long *d = dst;
dst                77 common/libc/string/memcpy.c 		char *d = dst;
dst                85 common/libc/string/memcpy.c 	return dst;
dst                49 common/libc/string/memmove.c memmove(void *dst, const void *src, size_t len)
dst                78 common/libc/string/memmove.c 	if ((uintptr_t)dst < (uintptr_t)src) {
dst                83 common/libc/string/memmove.c 		return memcpy(dst, src, len);
dst                91 common/libc/string/memmove.c 	if ((uintptr_t)dst % sizeof(long) == 0 &&
dst                95 common/libc/string/memmove.c 		long *d = dst;
dst               108 common/libc/string/memmove.c 		char *d = dst;
dst               116 common/libc/string/memmove.c 	return dst;