Lines Matching refs:one
19 char one[50];
29 memset(one, 0, sizeof(one));
31 strcpy(one, "abcdefgh");
32 memmove(one, one, 9);
33 if (strcmp(one, "abcdefgh")) {
45 memset(one, 0, sizeof(one));
48 strcpy(one, "helloWorld");
50 memmove(two, one, 11);
51 if (strcmp(one, "helloWorld")) {
66 memset(one, 0, sizeof(one));
68 strcpy(one, "abcdefgh");
69 memmove(one + 1, one + 2, 7);
70 if (strcmp(one, "acdefgh")) {
82 memset(one, 0, sizeof(one));
84 strcpy(one, "abcdefgh");
85 memmove(one + 1, one, 9);
86 if (strcmp(one, "aabcdefgh")) {