Home | History | Annotate | Download | only in libc

Lines Matching refs:src

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