Home | History | Annotate | Download | only in string

Lines Matching refs:src

52 	const char *src = src0;
55 if (length == 0 || dst == src) /* nothing to do */
64 if ((unsigned long)dst < (unsigned long)src) {
68 t = (long)src; /* only need low bits */
79 TLOOP1(*dst++ = *src++);
85 TLOOP(*(word *)dst = *(word *)src; src += wsize; dst += wsize);
87 TLOOP(*dst++ = *src++);
94 src += length;
96 t = (long)src;
103 TLOOP1(*--dst = *--src);
106 TLOOP(src -= wsize; dst -= wsize; *(word *)dst = *(word *)src);
108 TLOOP(*--dst = *--src);