Searched refs:strrchr (Results 1 - 25 of 166) sorted by relevance

1234567

/haiku-buildtools/binutils/libiberty/
H A Drindex.c9 deprecated in new programs in favor of @code{strrchr}.
15 extern char *strrchr (const char *, int);
20 return strrchr (s, c);
H A Dstrrchr.c1 /* Portable version of strrchr().
6 @deftypefn Supplemental char* strrchr (const char *@var{s}, int @var{c})
19 strrchr (register const char *s, int c) function
/haiku-buildtools/gcc/libiberty/
H A Drindex.c9 deprecated in new programs in favor of @code{strrchr}.
15 extern char *strrchr (const char *, int);
20 return strrchr (s, c);
H A Dstrrchr.c1 /* Portable version of strrchr().
6 @deftypefn Supplemental char* strrchr (const char *@var{s}, int @var{c})
19 strrchr (register const char *s, int c) function
/haiku-buildtools/legacy/binutils/libiberty/
H A Drindex.c9 deprecated in new programs in favor of @code{strrchr}.
15 extern char *strrchr (const char *, int);
20 return strrchr (s, c);
H A Dstrrchr.c1 /* Portable version of strrchr().
6 @deftypefn Supplemental char* strrchr (const char *@var{s}, int @var{c})
19 strrchr (register const char *s, int c) function
/haiku-buildtools/legacy/gcc/libiberty/
H A Drindex.c3 extern char *strrchr ();
10 return strrchr (s, c);
H A Dstrrchr.c1 /* Portable version of strrchr().
6 strrchr -- return pointer to last occurance of a character
9 char *strrchr (const char *s, int c)
23 strrchr (s, c) function
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/execute/builtins/
H A Dstrrchr.c3 Ensure all expected transformations of builtin strrchr and rindex
9 extern char *strrchr (const char *, int);
20 if (strrchr (foo, 'x'))
22 if (strrchr (foo, 'o') != foo + 7)
24 if (strrchr (foo, 'e') != foo + 1)
26 if (strrchr (foo + 3, 'e'))
28 if (strrchr (foo, '\0') != foo + 11)
30 if (strrchr (bar, '\0') != bar + 8)
32 if (strrchr (bar + 4, '\0') != bar + 8)
34 if (strrchr (ba
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/i386/
H A Dchkp-strchr.c9 return strrchr (str, '_');
/haiku-buildtools/legacy/gcc/gcc/config/m68k/
H A Dxm-amix.h24 #define rindex strrchr
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/execute/builtins/lib/
H A Dstrrchr.c6 strrchr (const char *s, int c) function
31 return strrchr (s, c);
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/
H A Dpr19967.c10 char *strrchr(const char *, int);
21 p = strrchr(__func__, 'f');
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/ext/
H A Dbuiltin10.C16 cc2 = strrchr ("abcba", 'b');
26 cc2 = std::strrchr ("abcba", 'b');
36 c2 = strrchr ((char *)"abcba", 'b');
46 c2 = std::strrchr ((char *)"abcba", 'b');
53 // { dg-final { scan-tree-dump-not "strrchr" "optimized" } }
/haiku-buildtools/gcc/libstdc++-v3/testsuite/21_strings/c_strings/char/
H A D3_neg.cc33 c1 = std::strrchr (c2, 'c');
39 cc1 = std::strrchr (c2, 'c');
45 c1 = std::strrchr (cc2, 'c'); // { dg-error "invalid conversion" }
51 cc1 = std::strrchr (cc2, 'c');
H A D1.cc49 // const char* strrchr(const char* s, int c);
50 // char* strrchr(char* s, int c);
51 cc1 = std::strrchr(ccarray1, 'c');
52 c1 = std::strrchr(carray, 'c');
H A D2.cc40 cc = strrchr(ccarray1, 'c');
/haiku-buildtools/legacy/gcc/texinfo/info/
H A Dinfo-utils.h30 # undef strrchr macro
32 # define strrchr rindex macro
/haiku-buildtools/legacy/binutils/gprof/
H A Dsource.c77 fname = strrchr (sf->name, '/');
125 name_only = strrchr (sf->name, '/');
128 char *bslash = strrchr (sf->name, '\\');
180 filename = strrchr (sf->name, '/');
183 char *bslash = strrchr (sf->name, '\\');
207 char *dot = strrchr (fname, '.');
/haiku-buildtools/binutils/gprof/
H A Dsource.c77 fname = strrchr (sf->name, '/');
125 name_only = strrchr (sf->name, '/');
128 char *bslash = strrchr (sf->name, '\\');
180 filename = strrchr (sf->name, '/');
183 char *bslash = strrchr (sf->name, '\\');
207 char *dot = strrchr (fname, '.');
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/execute/
H A Dstring-opt-5.c3 Ensure builtin strlen, strcmp, strchr, strrchr and strncpy
12 extern char *strrchr (const char *, int);
59 if (strrchr (bar, 'x'))
61 if (strrchr (bar, 'o') != bar + 4)
/haiku-buildtools/gcc/libstdc++-v3/testsuite/21_strings/headers/cstring/
H A Dfunctions_std.cc41 using std::strrchr;
/haiku-buildtools/legacy/binutils/bfd/
H A Dcorefile.c155 last_slash = strrchr (core, '/');
159 last_slash = strrchr (exec, '/');
/haiku-buildtools/binutils/bfd/
H A Dcorefile.c180 last_slash = strrchr (core, '/');
184 last_slash = strrchr (exec, '/');
/haiku-buildtools/legacy/binutils/ld/
H A Dsysdep.h38 extern char *strrchr ();

Completed in 220 milliseconds

1234567