Lines Matching refs:tmp
100 char *tmp = dest; in strcpy() local
104 return tmp; in strcpy()
125 char *tmp = dest; in strncpy() local
128 if ((*tmp = *src) != 0) in strncpy()
130 tmp++; in strncpy()
173 char *tmp = dest; in strcat() local
179 return tmp; in strcat()
196 char *tmp = dest; in strncat() local
208 return tmp; in strncat()
555 char *tmp = dest; in memcpy() local
559 *tmp++ = *s++; in memcpy()
576 char *tmp; in memmove() local
580 tmp = dest; in memmove()
583 *tmp++ = *s++; in memmove()
585 tmp = dest; in memmove()
586 tmp += count; in memmove()
590 *--tmp = *--s; in memmove()