Lines Matching refs:dst
72 char *dst = dst0; in memcpy() local
76 if (length == 0 || dst == src) /* nothing to do */ in memcpy()
85 if ((unsigned long)dst < (unsigned long)src) { in memcpy()
90 if ((t | (uintptr_t)dst) & wmask) { in memcpy()
95 if ((t ^ (uintptr_t)dst) & wmask || length < wsize) in memcpy()
100 TLOOP1(*dst++ = *src++); in memcpy()
106 TLOOP(*(word *)dst = *(word *)src; src += wsize; dst += wsize); in memcpy()
108 TLOOP(*dst++ = *src++); in memcpy()
116 dst += length; in memcpy()
118 if ((t | (uintptr_t)dst) & wmask) { in memcpy()
119 if ((t ^ (uintptr_t)dst) & wmask || length <= wsize) in memcpy()
124 TLOOP1(*--dst = *--src); in memcpy()
127 TLOOP(src -= wsize; dst -= wsize; *(word *)dst = *(word *)src); in memcpy()
129 TLOOP(*--dst = *--src); in memcpy()