HomeSort by: relevance | last modified time | path
    Searched refs:str2 (Results 1 - 23 of 23) sorted by relevancy

  /src/tests/lib/libpthread/
h_cancel.c 43 char str2[] = "You should not see this.\n"; local in function:main
55 write(STDOUT_FILENO, str2, sizeof(str2)-1);
  /src/tests/usr.bin/c++/
t_msan_shadow.sh 72 char str2[] = "cdefghi";
74 __msan_copy_shadow(str2 + 2, str, 4);
76 __msan_print_shadow(str2, 8);
94 char str2[] = "cdefghi";
96 __msan_copy_shadow(str2 + 2, str, 4);
98 __msan_print_shadow(str2, 8);
123 char str2[] = "cdefghi";
125 __msan_copy_shadow(str2 + 2, str, 4);
127 __msan_print_shadow(str2, 8);
152 char str2[] = "cdefghi"
    [all...]
  /src/tests/usr.bin/cc/
t_msan_shadow.sh 72 char str2[] = "cdefghi";
74 __msan_copy_shadow(str2 + 2, str, 4);
76 __msan_print_shadow(str2, 8);
94 char str2[] = "cdefghi";
96 __msan_copy_shadow(str2 + 2, str, 4);
98 __msan_print_shadow(str2, 8);
123 char str2[] = "cdefghi";
125 __msan_copy_shadow(str2 + 2, str, 4);
127 __msan_print_shadow(str2, 8);
152 char str2[] = "cdefghi"
    [all...]
  /src/lib/libc/citrus/
citrus_bcs.c 52 const char * __restrict str2)
58 c2 = _bcs_toupper(*str2++);
69 const char * __restrict str2, size_t sz)
75 c2 = _bcs_toupper(*str2++);
  /src/bin/csh/
str.c 260 s_strcmp(const Char *str1, const Char *str2)
262 for (; *str1 && *str1 == *str2; str1++, str2++)
269 if (*str1 == '\0' && *str2 == '\0')
273 else if (*str2 == '\0')
276 return (*str1 - *str2);
280 s_strncmp(const Char *str1, const Char *str2, size_t n)
285 if (*str1 != *str2) {
293 else if (*str2 == '\0')
296 return (*str1 - *str2);
    [all...]
  /src/games/adventure/
extern.h 104 #define weq(str1, str2) (!strncmp((str1), (str2), 5))
  /src/usr.sbin/ypserv/makedbm/
makedbm.c 146 add_record(DBM *db, const char *str1, const char *str2, int check)
160 val.dptr = __UNCONST(str2);
161 val.dsize = strlen(str2);
165 warnx("can't store `%s %s'", str1, str2);
  /src/common/lib/libprop/
prop_string.c 211 prop_string_t str2 = v2; local in function:_prop_string_equals
213 if (str1 == str2)
215 if (str1->ps_size != str2->ps_size)
217 if (strcmp(prop_string_contents(str1), prop_string_contents(str2)))
595 prop_string_equals(prop_string_t str1, prop_string_t str2)
597 if (!prop_object_is_string(str1) || !prop_object_is_string(str2))
600 return prop_object_equals(str1, str2);
prop_intern.c 61 const char *str2, size_t len2)
63 return (len1 == len2 && memcmp(str1, str2, len1) == 0);
  /src/sys/arch/prep/prep/
autoconf.c 217 prop_string_t str1, str2, str3; local in function:gen_fwpath
229 str2 = prop_dictionary_get(device_properties(parent), "prep-fw-path");
230 if (str2 == NULL) {
235 str3 = prop_string_copy(str2);
244 prop_string_cstring_nocopy(str2),
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/tests/
asan_mac_test.cc 208 CFStringRef str2 = CFStringCreateCopy(0, str); local in function:TEST
209 EXPECT_EQ(str, str2);
  /src/usr.bin/patch/
backupfile.c 164 * Return the newly-allocated concatenation of STR1 and STR2. If out of
168 concat(const char *str1, const char *str2)
172 if (asprintf(&newstr, "%s%s", str1, str2) == -1)
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
sanitizer_libc_test.cc 104 const char *str2 = "zxcv"; local in function:TEST
105 uptr len2 = internal_strlen(str2);
122 EXPECT_TRUE(WriteToFile(fd, str2, len2, &bytes_written));
161 EXPECT_EQ(0, internal_memcmp(buf, str2, len2));
  /src/usr.bin/qsubst/
qsubst.c 9 * qsubst str1 str2 [ options ]
12 * each file on this list, it then replaces str1 with str2 wherever
80 * str2. Neither one may contain a NUL.
129 static char *str2; variable in typeref:typename:char *
275 put_ul(use_replacement ? str2 : str1);
449 fwrite(str2, 1, s2l, tempf);
508 fprintf(stderr, "usage: %s str1 str2 [ -w -! -noask -go -f file -F file ]\n",
555 fprintf(stderr, "%s: argument order has changed, it's now: str1 str2 files...\n", __progname);
558 str2 = av[2];
562 s2l = strlen(str2);
    [all...]
  /src/games/larn/
io.c 561 u_char *str2; local in function:lprcat
564 str2 = lpnt;
565 while ((*str2++ = *str++) != '\0')
567 lpnt = str2 - 1;
main.c 595 show1(int idx, const char *str2[])
598 if (str2 != 0 && str2[ivenarg[idx]][0] != 0)
599 lprintf(" of%s", str2[ivenarg[idx]]);
  /src/usr.sbin/eeprom/
ofhandlers.c 75 #define BARF(str1, str2) { \
76 snprintf(err_str, sizeof err_str, "%s: %s", (str1), (str2)); \
ophandlers.c 65 #define BARF(str1, str2) { \
66 snprintf(err_str, sizeof err_str, "%s: %s", (str1), (str2)); \
prephandlers.c 71 #define BARF(str1, str2) { \
72 snprintf(err_str, sizeof err_str, "%s: %s", (str1), (str2)); \
  /src/usr.bin/config/
hash.c 186 hash2(u_int h, const char *str1, const char *str2)
191 h = hash(h, str2);
  /src/usr.sbin/altq/libaltq/
qop.c 980 char str1[INET6_ADDRSTRLEN], str2[INET6_ADDRSTRLEN]; local in function:print_filter
988 str2, sizeof(str2)),
994 str2, sizeof(str2)),
  /src/sys/arch/hppa/stand/xxboot/
start.S 511 ; int strcmp(const char *str1, const char *str2)
  /src/sys/dev/ic/
advlib.c 3119 AscCompareString(const u_char *str1, const u_char *str2, int len)
3125 diff = (int) (str1[i] - str2[i]);

Completed in 108 milliseconds