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()
308 char *tmp = dest; in strcat() local
314 return tmp; in strcat()
331 char *tmp = dest; in strncat() local
343 return tmp; in strncat()
853 char *tmp = dest; in memcpy() local
857 *tmp++ = *s++; in memcpy()
874 char *tmp; in memmove() local
878 tmp = dest; in memmove()
881 *tmp++ = *s++; in memmove()
883 tmp = dest; in memmove()
884 tmp += count; in memmove()
888 *--tmp = *--s; in memmove()