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

1234567891011>>

/freebsd-10-stable/contrib/binutils/libiberty/
H A Dindex.c9 deprecated in new programs in favor of @code{strchr}.
15 extern char * strchr(const char *, int);
20 return strchr (s, c);
H A Dstrchr.c1 /* Portable version of strchr()
6 @deftypefn Supplemental char* strchr (const char *@var{s}, int @var{c})
19 strchr (register const char *s, int c) function
H A Dstrstr.c25 extern char *strchr (const char *, int);
35 for (; (p = strchr (p, *s2)) != 0; p++)
/freebsd-10-stable/contrib/gcclibs/libiberty/
H A Dindex.c9 deprecated in new programs in favor of @code{strchr}.
15 extern char * strchr(const char *, int);
20 return strchr (s, c);
H A Dstrchr.c1 /* Portable version of strchr()
6 @deftypefn Supplemental char* strchr (const char *@var{s}, int @var{c})
19 strchr (register const char *s, int c) function
H A Dstrstr.c25 extern char *strchr (const char *, int);
35 for (; (p = strchr (p, *s2)) != 0; p++)
/freebsd-10-stable/sys/contrib/dev/acpica/include/platform/
H A Dacgcc.h68 * Some versions of gcc implement strchr() with a buggy macro. So,
74 #ifdef strchr
75 #undef strchr macro
/freebsd-10-stable/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-10-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/version/
H A Dtst.1.0.d37 int strchr;
/freebsd-10-stable/contrib/gdb/gdb/
H A Dgdb_string.h33 #ifndef strchr
34 extern char *strchr (const char *, int); /* X3.159-1989 4.11.5.2 */
/freebsd-10-stable/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-10-stable/lib/libc/string/
H A Dstrchr.c40 strchr(const char *p, int ch) function
54 __weak_reference(strchr, index);
/freebsd-10-stable/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-10-stable/lib/libc/i386/string/
H A Dstrchr.S35 * strchr(s, c)
48 ENTRY(strchr) function
64 END(strchr)
66 WEAK_ALIAS(index, strchr)
H A DMakefile.inc5 memset.S strcat.S strchr.S strcmp.S strcpy.S strncmp.S strrchr.S \
/freebsd-10-stable/lib/libc/mips/string/
H A Dstrchr.S47 LEAF(strchr)
59 END(strchr)
61 WEAK_ALIAS(index, strchr)
/freebsd-10-stable/contrib/apr/strings/
H A Dapr_strtok.c24 #define APR_WANT_STRFUNC /* for strchr() */
35 while (*str && strchr(sep, *str))
47 while (**last && !strchr(sep, **last))
/freebsd-10-stable/contrib/apr/tools/
H A Dgen_test_char.c75 if (c && strchr("&;`'\"|*?~<>^()[]{}$\\\n\r%", c)) {
79 if (c && strchr("&;`'\"|*?~<>^()[]{}$\\\n", c)) {
84 if (!isalnum(c) && !strchr("$-_.+!*'(),:@&=~", c)) {
88 if (!isalnum(c) && !strchr("$-_.+!*'(),:@&=/~", c)) {
92 if (!isalnum(c) && !strchr(".-*_ ", c)) {
105 if (strchr("<>&\"", c)) {
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/
H A DBuiltins.h97 return strchr(GetRecord(ID).Attributes, 'c') != 0;
102 return strchr(GetRecord(ID).Attributes, 'n') != 0;
107 return strchr(GetRecord(ID).Attributes, 'r') != 0;
112 return strchr(GetRecord(ID).Attributes, 'j') != 0;
118 return strchr(GetRecord(ID).Attributes, 'u') != 0;
124 return strchr(GetRecord(ID).Attributes, 'F') != 0;
131 return strchr(GetRecord(ID).Attributes, 'f') != 0;
138 return strchr(GetRecord(ID).Attributes, 'i') != 0;
143 return strchr(GetRecord(ID).Attributes, 't') != 0;
171 return strchr(GetRecor
[all...]
/freebsd-10-stable/contrib/ipfilter/
H A Dgenmask.c21 if (strchr(msk, '.') || strchr(msk, 'x') || strchr(msk, ':')) {
/freebsd-10-stable/contrib/libreadline/
H A Dhistlib.h54 # ifndef strchr
55 extern char *strchr ();
57 #define member(c, s) ((c) ? ((char *)strchr ((s), (c)) != (char *)NULL) : 0)
/freebsd-10-stable/lib/libc/arm/string/
H A DMakefile.inc5 memmove.S memset.S strcat.c strchr.c strcmp.S strcpy.c strlen.S \
/freebsd-10-stable/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-10-stable/contrib/ipfilter/lib/
H A Dassigndefined.c20 t = strchr(s, '=');

Completed in 209 milliseconds

1234567891011>>