Home
last modified time | relevance | path

Searched refs:rt_memmove (Results 1 – 3 of 3) sorted by relevance

/src/klibc/utest/
A DTC_rt_memmove.c19 rt_memmove(dest, src, rt_strlen(src) + 1); in TC_rt_memmove_basic()
27 rt_memmove(&buffer[3], buffer, 5); in TC_rt_memmove_overlap_src_before()
35 rt_memmove(&buffer[2], &buffer[5], 5); in TC_rt_memmove_overlap_src_after()
44 rt_memmove(dest, src, 0); in TC_rt_memmove_zero_length()
52 rt_memmove(buffer, buffer, rt_strlen(buffer) + 1); in TC_rt_memmove_same_location()
61 rt_memmove(dest, RT_NULL, 0); /* Should not crash and do nothing */ in TC_rt_memmove_null_src()
69 rt_memmove(RT_NULL, src, 0); /* Should not crash and do nothing */ in TC_rt_memmove_null_dest()
77 rt_memmove(dest, src, sizeof(src) + 5); /* Should only copy up to src length */ in TC_rt_memmove_too_long()
87 rt_memmove(dest, src, rt_strlen(src) + 1); in TC_rt_memmove_empty_string()
/src/klibc/
A DKconfig145 menu "rt_memmove options"
147 bool "Enable rt_memmove to use user-defined version"
152 bool "Enable rt_memmove to use libc memmove"
155 endmenu # rt_memmove options
A Dkstring.c214 void *rt_memmove(void *dest, const void *src, rt_size_t n) in rt_memmove() function
239 RTM_EXPORT(rt_memmove);

Completed in 5 milliseconds