Lines Matching refs:v_dst
35 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()
70 return memcpy(v_dst, v_src, c); in memmove()
211 return v_dst; in memmove()