Lines Matching refs:str2
75 char str1[] = "str1", str2[] = "str2";
77 dfsan_set_label(j_label, &str2[3], 1);
79 int rv = memcmp(str1, str2, sizeof(str1));
90 char str2[sizeof(str1)];
93 ASSERT_ZERO_LABEL(memcpy(str2, str1, sizeof(str1)));
94 assert(0 == memcmp(str2, str1, sizeof(str1)));
95 ASSERT_ZERO_LABEL(str2[0]);
96 ASSERT_LABEL(str2[3], i_label);
112 char str1[] = "str1", str2[] = "str2";
114 dfsan_set_label(j_label, &str2[3], 1);
116 int rv = strcmp(str1, str2);
150 char str2[sizeof(str1)];
153 char *strd = strncpy(str2, str1, 5);
154 assert(strd == str2);
155 assert(strcmp(str1, str2) == 0);
162 strd = strncpy(str2, str1, 3);
163 assert(strd == str2);
164 assert(strncmp(str1, str2, 3) == 0);
172 char str1[] = "str1", str2[] = "str2";
174 dfsan_set_label(j_label, &str2[3], 1);
176 int rv = strncmp(str1, str2, sizeof(str1));
184 rv = strncmp(str1, str2, 3);
190 char str1[] = "str1", str2[] = "str2", str3[] = "Str1";
192 dfsan_set_label(j_label, &str2[3], 1);
195 int rv = strcasecmp(str1, str2);
213 char str1[] = "Str1", str2[] = "str2";
215 dfsan_set_label(j_label, &str2[3], 1);
217 int rv = strncasecmp(str1, str2, sizeof(str1));
225 rv = strncasecmp(str1, str2, 3);