Lines Matching refs:dst
74 char *dst; in memcpy() local
78 dst = dst0; in memcpy()
81 if (length == 0 || dst == src) { /* nothing to do */ in memcpy()
91 if ((unsigned long)dst < (unsigned long)src) { in memcpy()
97 if ((t | (uintptr_t)dst) & wmask) { in memcpy()
102 if ((t ^ (uintptr_t)dst) & wmask || length < wsize) { in memcpy()
109 TLOOP1(*dst++ = *src++); in memcpy()
115 TLOOP(*(word *)dst = *(const word *)src; src += wsize; in memcpy()
116 dst += wsize); in memcpy()
118 TLOOP(*dst++ = *src++); in memcpy()
126 dst += length; in memcpy()
129 if ((t | (uintptr_t)dst) & wmask) { in memcpy()
130 if ((t ^ (uintptr_t)dst) & wmask || length <= wsize) { in memcpy()
137 TLOOP1(*--dst = *--src); in memcpy()
140 TLOOP(src -= wsize; dst -= wsize; in memcpy()
141 *(word *)dst = *(const word *)src); in memcpy()
143 TLOOP(*--dst = *--src); in memcpy()