Lines Matching refs:tmp
89 char *tmp = dest; in strcpy() local
93 return tmp; in strcpy()
114 char *tmp = dest; in strncpy() local
117 if ((*tmp = *src) != 0) in strncpy()
119 tmp++; in strncpy()
304 char *tmp = dest; in strcat() local
310 return tmp; in strcat()
327 char *tmp = dest; in strncat() local
339 return tmp; in strncat()
809 char *tmp = dest; in memcpy() local
813 *tmp++ = *s++; in memcpy()
830 char *tmp; in memmove() local
834 tmp = dest; in memmove()
837 *tmp++ = *s++; in memmove()
839 tmp = dest; in memmove()
840 tmp += count; in memmove()
844 *--tmp = *--s; in memmove()