Lines Matching refs:src
71 const char *src = src0; in memcpy() local
74 if (length == 0 || dst == src) /* nothing to do */ in memcpy()
83 if ((unsigned long)dst < (unsigned long)src) { in memcpy()
87 t = (uintptr_t)src; /* only need low bits */ in memcpy()
98 TLOOP1(*dst++ = *src++); in memcpy()
104 TLOOP(*(word *)dst = *(word *)src; src += wsize; dst += wsize); in memcpy()
106 TLOOP(*dst++ = *src++); in memcpy()
113 src += length; in memcpy()
115 t = (uintptr_t)src; in memcpy()
122 TLOOP1(*--dst = *--src); in memcpy()
125 TLOOP(src -= wsize; dst -= wsize; *(word *)dst = *(word *)src); in memcpy()
127 TLOOP(*--dst = *--src); in memcpy()