/src/tests/lib/libpthread/ |
h_cancel.c | 42 char str1[] = "You should see this.\n"; local in function:main 51 write(STDOUT_FILENO, str1, sizeof(str1)-1);
|
/src/lib/libc/citrus/ |
citrus_bcs.c | 51 _citrus_bcs_strcasecmp(const char * __restrict str1, 57 c1 = _bcs_toupper(*str1++); 68 _citrus_bcs_strncasecmp(const char * __restrict str1, 74 c1 = _bcs_toupper(*str1++);
|
/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') 271 else if (*str1 == '\0') 276 return (*str1 - *str2); 280 s_strncmp(const Char *str1, const Char *str2, size_t n) 285 if (*str1 != *str2) { 291 if (*str1 == '\0' [all...] |
/src/sys/arch/prep/prep/ |
autoconf.c | 217 prop_string_t str1, str2, str3; local in function:gen_fwpath 220 str1 = prop_dictionary_get(device_properties(dev), 222 if (str1 == NULL) 226 str1); 232 str1); 238 prop_string_equals_cstring(str1, ""))) 240 if (!prop_string_equals_cstring(str1, "/")) 241 prop_string_append(str3, str1); 245 prop_string_cstring_nocopy(str1), 261 prop_string_t str1; local in function:build_fwpath [all...] |
/src/games/adventure/ |
extern.h | 104 #define weq(str1, str2) (!strncmp((str1), (str2), 5))
|
/src/sys/arch/x68k/stand/boot/ |
boot.ldscript | 19 *(.rodata.str1.1)
|
/src/games/hack/ |
hack.do_name.c | 245 char **str1; local in function:docall 259 str1 = &(objects[obj->otyp].oc_uname); 260 if (*str1) 261 free(*str1); 262 *str1 = str;
|
/src/usr.sbin/ypserv/makedbm/ |
makedbm.c | 146 add_record(DBM *db, const char *str1, const char *str2, int check) 151 key.dptr = __UNCONST(str1); 152 key.dsize = strlen(str1); 165 warnx("can't store `%s %s'", str1, str2);
|
/src/common/lib/libprop/ |
prop_string.c | 210 prop_string_t str1 = v1; 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 | 60 _prop_intern_match(const char *str1, size_t len1, 63 return (len1 == len2 && memcmp(str1, str2, len1) == 0);
|
/src/usr.bin/qsubst/ |
qsubst.c | 9 * qsubst str1 str2 [ options ] 12 * each file on this list, it then replaces str1 with str2 wherever 79 * Str1 is limited to 512 characters; there is no limit on the size of 128 static char *str1; variable in typeref:typename:char * 204 !bcmp(bufp - 1 - s1l, str1, s1l)); 206 return (!bcmp(bufp - s1l, str1, s1l)); 275 put_ul(use_replacement ? str2 : str1); 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); 557 str1 = av[1] [all...] |
/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 | 102 const char *str1 = "qwerty"; local in function:TEST 103 uptr len1 = internal_strlen(str1); 120 EXPECT_TRUE(WriteToFile(fd, str1, len1, &bytes_written)); 156 EXPECT_EQ(0, internal_memcmp(buf, str1, len1));
|
/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) 189 h = hash(h, str1);
|
/src/sys/arch/riscv/include/ |
asm.h | 116 .pushsection .rodata.str1.8,"aMS",@progbits,1; \
|
/src/usr.sbin/altq/libaltq/ |
qop.c | 980 char str1[INET6_ADDRSTRLEN], str2[INET6_ADDRSTRLEN]; local in function:print_filter 986 str1, sizeof(str1)), 992 str1, sizeof(str1)),
|
/src/sys/net/lagg/ |
if_lagg_lacp.c | 1945 char str1[LACP_SYSTEMIDSTR_LEN] __LACPDEBUGUSED; local in function:lacp_sm_rx_update_selected 1953 LACP_PEERINFO_IDSTR(peer_pi, str1, sizeof(str1)); 1955 "different peerinfo, %s vs %s\n", str0, str1));
|
/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]);
|