Home
last modified time | relevance | path

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

/third_party/ulib/musl/src/string/
A Dmemmove.c6 #define WS (sizeof(WT)) macro
18 if ((uintptr_t)s % WS == (uintptr_t)d % WS) { in memmove()
19 while ((uintptr_t)d % WS) { in memmove()
24 for (; n >= WS; n -= WS, d += WS, s += WS) in memmove()
30 if ((uintptr_t)s % WS == (uintptr_t)d % WS) { in memmove()
31 while ((uintptr_t)(d + n) % WS) { in memmove()
36 while (n >= WS) in memmove()
37 n -= WS, *(WT*)(d + n) = *(WT*)(s + n); in memmove()

Completed in 5 milliseconds