Home
last modified time | relevance | path

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

/linux-6.6.21/arch/microblaze/lib/
Dmemmove.c34 void *memmove(void *v_dst, const void *v_src, __kernel_size_t c) in memmove() argument
37 char *dst = v_dst; in memmove()
42 return v_dst; in memmove()
45 if (v_dst <= v_src) in memmove()
46 return memcpy(v_dst, v_src, c); in memmove()
192 return v_dst; in memmove()
Dmemcpy.c35 void *memcpy(void *v_dst, const void *v_src, __kernel_size_t c) in memcpy() argument
38 char *dst = v_dst; in memcpy()
176 return v_dst; in memcpy()