Lines Matching refs:src
56 const char *src = src0; in memcpy_gc() local
59 if (length == 0 || dst == src) /* nothing to do */ in memcpy_gc()
68 if ((unsigned long)dst < (unsigned long)src) { in memcpy_gc()
72 t = (uintptr_t)src; /* only need low bits */ in memcpy_gc()
83 TLOOP1(*dst++ = *src++); in memcpy_gc()
89 TLOOP(*(word *)(void *)dst = *(const word *)(const void *)src; in memcpy_gc()
90 src += wsize; dst += wsize); in memcpy_gc()
92 TLOOP(*dst++ = *src++); in memcpy_gc()
99 src += length; in memcpy_gc()
101 t = (uintptr_t)src; in memcpy_gc()
108 TLOOP1(*--dst = *--src); in memcpy_gc()
111 TLOOP(src -= wsize; dst -= wsize; in memcpy_gc()
112 *(word *)(void *)dst = *(const word *)(const void *)src); in memcpy_gc()
114 TLOOP(*--dst = *--src); in memcpy_gc()