Lines Matching refs:tmp
91 char *tmp = dest; in strcpy() local
95 return tmp; in strcpy()
116 char *tmp = dest; in strncpy() local
119 if ((*tmp = *src) != 0) in strncpy()
121 tmp++; in strncpy()
284 char *tmp = dest; in strcat() local
290 return tmp; in strcat()
307 char *tmp = dest; in strncat() local
319 return tmp; in strncat()
829 char *tmp = dest; in memcpy() local
833 *tmp++ = *s++; in memcpy()
850 char *tmp; in memmove() local
854 tmp = dest; in memmove()
857 *tmp++ = *s++; in memmove()
859 tmp = dest; in memmove()
860 tmp += count; in memmove()
864 *--tmp = *--s; in memmove()