Searched refs:strchr (Results 1 - 25 of 1293) sorted by relevance

1234567891011>>

/freebsd-current/sys/contrib/dev/acpica/include/platform/
H A Dacgccex.h156 * Some versions of gcc implement strchr() with a buggy macro. So,
162 #ifdef strchr
163 #undef strchr macro
/freebsd-current/lib/libc/aarch64/string/
H A Dstrchr.S1 #define __strchr_aarch64 strchr
2 #include "aarch64/strchr.S"
5 .equ index, strchr
H A Dmemcpy.S6 .equ index, strchr
/freebsd-current/lib/libc/string/
H A Dstrchr.c30 strchr(const char *s, int c) function
36 __weak_reference(strchr, index);
/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/
H A Dtst.strchr.d37 printf("strchr(\"%s\", '%c') = \"%s\"\n", str, c, strchr(str, c));
41 printf("strchr(\"%s\", '%c') = \"%s\"\n", str, c, strchr(str, c));
44 printf("strrchr(\"%s\", '%c') = \"%s\"\n", strchr(str, c), c,
45 strrchr(strchr(str, c), c));
57 /strchr(str, 'a') != NULL/
/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/version/
H A Dtst.1.0.d37 int strchr;
/freebsd-current/crypto/heimdal/lib/roken/
H A Dhostent_find_fqdn.c48 if (strchr (ret, '.') == NULL)
50 if (strchr (*h, '.') != NULL) {
H A Dstrtok_r.c49 while(*s1 && strchr(s2, *s1))
54 while(*s1 && !strchr(s2, *s1))
/freebsd-current/contrib/ntp/sntp/libopts/compat/
H A Dstrchr.c5 char *strchr(char const *s, int c);
10 The strchr() function returns a pointer to the first occurrence of the
20 The strchr() and strrchr() functions return a pointer to the matched
28 strchr(char const *s, int c);
34 strchr(char const *s, int c) function
/freebsd-current/sbin/ipf/common/
H A Dgenmask.c19 if (strchr(msk, '.') || strchr(msk, 'x') || strchr(msk, ':')) {
/freebsd-current/lib/libc/i386/string/
H A Dstrchr.S33 * strchr(s, c)
46 ENTRY(strchr)
62 END(strchr)
64 WEAK_REFERENCE(strchr, index)
H A DMakefile.inc11 strchr.S \
/freebsd-current/sys/libkern/
H A Dstrchr.c36 strchr(const char *cp, int ch) function
/freebsd-current/contrib/llvm-project/clang/include/clang/Basic/
H A DBuiltins.h117 return strchr(getRecord(ID).Attributes, 'U') != nullptr;
123 return strchr(getRecord(ID).Attributes, 'c') != nullptr;
128 return strchr(getRecord(ID).Attributes, 'n') != nullptr;
133 return strchr(getRecord(ID).Attributes, 'r') != nullptr;
138 return strchr(getRecord(ID).Attributes, 'j') != nullptr;
144 return strchr(getRecord(ID).Attributes, 'u') != nullptr;
150 return strchr(getRecord(ID).Attributes, 'F') != nullptr;
161 return strchr(getRecord(ID).Attributes, 'f') != nullptr;
168 return strchr(getRecord(ID).Attributes, 'h') != nullptr;
175 return strchr(getRecor
[all...]
/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/safety/
H A Dtst.strchr.d41 trace(strchr((char *)(rand() ^ timestamp), rand()));
53 trace(strchr((char *)arg0, '!'));
/freebsd-current/contrib/libevent/sample/
H A Dhostcheck.c168 pattern_wildcard = strchr(pattern, '*');
176 pattern_label_end = strchr(pattern, '.');
177 if(pattern_label_end == NULL || strchr(pattern_label_end+1, '.') == NULL ||
186 hostname_label_end = strchr(hostname, '.');
/freebsd-current/contrib/sendmail/include/sm/
H A Dpath.h24 # define SM_FIRST_DIR_DELIM(s) strchr(s, '/')
/freebsd-current/contrib/mandoc/
H A Ddba_read.c55 for (cp = pdata->name; *cp != '\0'; cp = strchr(cp, '\0') + 1)
57 for (cp = pdata->sect; *cp != '\0'; cp = strchr(cp, '\0') + 1)
60 while (*(cp = strchr(cp, '\0') + 1) != '\0')
63 while (*(cp = strchr(cp, '\0') + 1) != '\0')
/freebsd-current/sbin/ipf/libipf/
H A Dassigndefined.c20 t = strchr(s, '=');
H A Dtcpflags.c36 if (!(t = strchr(flagset, *s))) {
/freebsd-current/contrib/ntp/sntp/libevent/sample/
H A Dhostcheck.c168 pattern_wildcard = strchr(pattern, '*');
176 pattern_label_end = strchr(pattern, '.');
177 if(pattern_label_end == NULL || strchr(pattern_label_end+1, '.') == NULL ||
186 hostname_label_end = strchr(hostname, '.');
/freebsd-current/contrib/ntp/libntp/
H A Ddecodenetnum.c104 char * endp = strchr(++haddr, ']');
108 afam = strchr(haddr, ':') ? AF_INET6 : AF_INET;
111 char *col = strchr(haddr, ':');
112 char *dot = strchr(haddr, '.');
146 scope = _num_or_dflt(_chop(strchr(haddr, '%')), 0xFFFFFFFFu, scope);
/freebsd-current/bin/hostname/
H A Dhostname.c83 p = strchr(hostname, '.');
87 p = strchr(hostname, '.');
/freebsd-current/stand/i386/libi386/
H A Ddevicename.c50 (strchr(devspec, ':') == NULL)) {
/freebsd-current/stand/userboot/userboot/
H A Ddevicename.c51 (strchr(devspec, ':') == NULL)) {

Completed in 485 milliseconds

1234567891011>>