Home
last modified time | relevance | path

Searched refs:v_dst (Results 1 – 2 of 2) sorted by relevance

/arch/microblaze/lib/
Dmemmove.c35 void *memmove(void *v_dst, const void *v_src, __kernel_size_t c) in memmove() argument
38 char *dst = v_dst; in memmove()
41 return v_dst; in memmove()
44 if (v_dst <= v_src) in memmove()
45 return memcpy(v_dst, v_src, c); in memmove()
55 return v_dst; in memmove()
58 void *memmove(void *v_dst, const void *v_src, __kernel_size_t c) in memmove() argument
61 char *dst = v_dst; in memmove()
66 return v_dst; in memmove()
69 if (v_dst <= v_src) in memmove()
[all …]
Dmemcpy.c36 void *memcpy(void *v_dst, const void *v_src, __kernel_size_t c) in memcpy() argument
39 char *dst = v_dst; in memcpy()
45 return v_dst; in memcpy()
48 void *memcpy(void *v_dst, const void *v_src, __kernel_size_t c) in memcpy() argument
51 char *dst = v_dst; in memcpy()
185 return v_dst; in memcpy()