Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:strcpy

3 #define strcpy(dest, src) \
19 strcpy(&gbuf[4], "Hi there");
25 strcpy(gbuf, "Hi there");
31 strcpy(&gbuf[100], "Hi there");
37 strcpy((char*)(void*)&gbuf[-1], "Hi there");
44 strcpy(gp, "Hi there");
52 strcpy(&buf[4], "Hi there");
60 strcpy((++i, gbuf), "Hi there");
68 strcpy(buf[++gi], "Hi there");
75 strcpy((char *)((++gi) + gj), "Hi there");
83 strcpy(*(++p), "Hi there");
90 strcpy(gp = gbuf, "Hi there");
97 strcpy(++gp, "Hi there");
104 strcpy(gp++, "Hi there");
111 strcpy(--gp, "Hi there");
118 strcpy(gp--, "Hi there");
125 strcpy(gp += 1, "Hi there");