Home | History | Annotate | Download | only in string

Lines Matching refs:src

64 	const char *src = src0;
67 if (length == 0 || dst == src) /* nothing to do */
76 if ((unsigned long)dst < (unsigned long)src) {
80 t = (long)src; /* only need low bits */
91 TLOOP1(*dst++ = *src++);
97 TLOOP(*(word *)dst = *(word *)src; src += wsize; dst += wsize);
99 TLOOP(*dst++ = *src++);
106 src += length;
108 t = (long)src;
115 TLOOP1(*--dst = *--src);
118 TLOOP(src -= wsize; dst -= wsize; *(word *)dst = *(word *)src);
120 TLOOP(*--dst = *--src);