Searched refs:v_dst (Results 1 - 2 of 2) sorted by relevance
/linux-4.1.27/arch/microblaze/lib/ |
H A D | memmove.c | 35 void *memmove(void *v_dst, const void *v_src, __kernel_size_t c) memmove() argument 38 char *dst = v_dst; memmove() 41 return v_dst; memmove() 44 if (v_dst <= v_src) memmove() 45 return memcpy(v_dst, v_src, c); memmove() 55 return v_dst; memmove() 58 void *memmove(void *v_dst, const void *v_src, __kernel_size_t c) memmove() argument 61 char *dst = v_dst; memmove() 66 return v_dst; memmove() 69 if (v_dst <= v_src) memmove() 70 return memcpy(v_dst, v_src, c); memmove() 211 return v_dst; memmove()
|
H A D | memcpy.c | 36 void *memcpy(void *v_dst, const void *v_src, __kernel_size_t c) memcpy() argument 39 char *dst = v_dst; memcpy() 45 return v_dst; memcpy() 48 void *memcpy(void *v_dst, const void *v_src, __kernel_size_t c) memcpy() argument 51 char *dst = v_dst; memcpy() 185 return v_dst; memcpy()
|
Completed in 69 milliseconds