Home
last modified time | relevance | path

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

/linux/arch/microblaze/lib/
A 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()
61 char *dst = v_dst; in memmove()
66 return v_dst; in memmove()
69 if (v_dst <= v_src) in memmove()
70 return memcpy(v_dst, v_src, c); in memmove()
[all …]
A 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()
189 return v_dst; in memcpy()

Completed in 4 milliseconds