HomeSort by: relevance | last modified time | path
    Searched defs:strchr (Results 1 - 25 of 94) sorted by relevancy

1 2 3 4

  /src/common/lib/libc/arch/arm/string/
strchr_naive.S 33 /* LINTSTUB: char * strchr(const char *, int) */
34 ENTRY(strchr) function
57 END(strchr)
strchr_arm.S 55 ENTRY(strchr) function
172 END(strchr)
  /src/common/lib/libc/arch/i386/string/small/
strchr.S 1 /* $NetBSD: strchr.S,v 1.3 2014/09/22 20:31:56 khorben Exp $ */
32 RCSID("$NetBSD: strchr.S,v 1.3 2014/09/22 20:31:56 khorben Exp $")
34 ENTRY(strchr) function
52 END(strchr)
  /src/common/lib/libc/arch/i386/string/
strchr.S 9 RCSID("$NetBSD: strchr.S,v 1.3 2014/03/22 19:38:46 jakllsch Exp $")
12 ENTRY(strchr) function
102 END(strchr)
104 STRONG_ALIAS(index,strchr)
  /src/lib/libc/string/
Lint_strchr.c 12 strchr(const char *src, int c) function
  /src/external/gpl3/binutils/dist/libiberty/
strchr.c 1 /* 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
  /src/external/gpl3/binutils.old/dist/libiberty/
strchr.c 1 /* 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
  /src/external/gpl3/gcc/dist/libiberty/
strchr.c 1 /* 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
  /src/external/gpl3/gcc.old/dist/libiberty/
strchr.c 1 /* 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
  /src/external/gpl3/gdb/dist/libiberty/
strchr.c 1 /* 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
  /src/external/gpl3/gdb.old/dist/libiberty/
strchr.c 1 /* 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
  /src/common/lib/libc/arch/x86_64/string/
strchr.S 1 /* $NetBSD: strchr.S,v 1.7 2014/03/22 19:16:34 jakllsch Exp $ */
37 RCSID("$NetBSD: strchr.S,v 1.7 2014/03/22 19:16:34 jakllsch Exp $")
54 ENTRY(strchr) function
138 END(strchr)
143 ENTRY(strchr) function
156 END(strchr)
159 STRONG_ALIAS(index,strchr)
  /src/sys/external/bsd/acpica/dist/include/platform/
acgccex.h 48 * Some versions of gcc implement strchr() with a buggy macro. So,
54 #ifdef strchr
55 #undef strchr macro
  /src/common/lib/libc/arch/m68k/string/
strchr.S 1 /* $NetBSD: strchr.S,v 1.4 2013/07/16 23:24:19 matt Exp $ */
42 RCSID("$NetBSD: strchr.S,v 1.4 2013/07/16 23:24:19 matt Exp $")
46 ENTRY(strchr) function
62 END(strchr)
64 STRONG_ALIAS(index,strchr)
  /src/common/lib/libc/string/
strchr.c 1 /* $NetBSD: strchr.c,v 1.7 2020/04/07 08:07:58 skrll Exp $ */
37 __RCSID("$NetBSD: strchr.c,v 1.7 2020/04/07 08:07:58 skrll Exp $");
50 #undef strchr macro
53 __strong_alias(index, strchr)
55 strchr(const char *p, int ch)
  /src/external/bsd/ntp/dist/sntp/libopts/compat/
strchr.c 1 /* $NetBSD: strchr.c,v 1.5 2020/05/25 20:47:35 christos Exp $ */
7 char *strchr(char const *s, int c);
12 The strchr() function returns a pointer to the first occurrence of the
22 The strchr() and strrchr() functions return a pointer to the matched
30 strchr(char const *s, int c);
36 strchr(char const *s, int c) function
  /src/sys/arch/vax/boot/common/
str.S 53 * strchr() small and easy.
55 ENTRY(strchr, 0) function
  /src/external/apache2/llvm/dist/libcxx/include/
string.h 37 const char* strchr(const char* s, int c);
38 char* strchr( char* s, int c);
73 char* __libcpp_strchr(const char* __s, int __c) {return (char*)strchr(__s, __c);}
75 const char* strchr(const char* __s, int __c) {return __libcpp_strchr(__s, __c);} function
77 char* strchr( char* __s, int __c) {return __libcpp_strchr(__s, __c);} function
  /src/external/bsd/openldap/dist/include/ac/
string.h 38 # undef strchr macro
39 # define strchr index macro
  /src/external/bsd/ntp/dist/sntp/libopts/
autoopts.c 60 # define strchr(_s, _c) option_strchr(_s, _c) macro
61 # include "compat/strchr.c"
  /src/external/bsd/less/dist/
lessecho.c 161 return (metachars != NULL && strchr(metachars, ch) != NULL);
165 char * strchr(char *s, char c) function
  /src/external/gpl2/diffutils/dist/lib/
xstrtol.c 44 # ifndef strchr
45 # define strchr index macro
151 if (valid_suffixes && **p && strchr (valid_suffixes, **p))
172 if (!strchr (valid_suffixes, **p))
178 if (strchr (valid_suffixes, '0'))
  /src/external/gpl2/grep/dist/lib/
xstrtol.c 44 # ifndef strchr
45 # define strchr index macro
160 if (!strchr (valid_suffixes, **p))
166 if (strchr (valid_suffixes, '0'))
  /src/sys/external/bsd/acpica/dist/utilities/
utclib.c 78 * FUNCTION: strchr
489 * FUNCTION: strchr
501 strchr ( function
  /src/external/bsd/top/dist/
os.h 70 #define strchr(a, b) index((a), (b)) macro

Completed in 37 milliseconds

1 2 3 4