Lines Matching refs:dst
17 char *strcpy(char *dst, const char *src) in strcpy() argument
19 char *dst0 = dst; in strcpy()
22 int misaligned = ((uintptr_t)dst | (uintptr_t)src) & (sizeof (long) - 1); in strcpy()
25 long *ldst = (long *)dst; in strcpy()
31 dst = (char *)ldst; in strcpy()
37 if (!(*dst++ = c0)) return dst0; in strcpy()
38 if (!(*dst++ = c1)) return dst0; in strcpy()
40 if (!(*dst++ = c2)) return dst0; in strcpy()
43 if (!(*dst++ = c3)) return dst0; in strcpy()
45 if (!(*dst++ = c4)) return dst0; in strcpy()
47 if (!(*dst++ = c5)) return dst0; in strcpy()
48 if (!(*dst++ = c6)) return dst0; in strcpy()
51 *dst++ = 0; in strcpy()
61 dst++; in strcpy()
62 *(dst - 1) = ch; in strcpy()