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