HomeSort by relevance Sort by last modified time
    Searched full:strrchr (Results 1 - 25 of 1001) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/libiberty/
rindex.c 9 deprecated in new programs in favor of @code{strrchr}.
15 extern char *strrchr (const char *, int);
20 return strrchr (s, c);
strrchr.c 1 /* 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
  /external/llvm/test/Transforms/InstCombine/
strrchr-1.ll 1 ; Test that the strrchr library call simplifier works correctly.
10 declare i8* @strrchr(i8*, i32)
14 ; CHECK-NOT: call i8* @strrchr
18 %dst = call i8* @strrchr(i8* %str, i32 119)
25 ; CHECK-NOT: call i8* @strrchr
29 %dst = call i8* @strrchr(i8* %str, i32 119)
36 ; CHECK-NOT: call i8* @strrchr
40 %dst = call i8* @strrchr(i8* %src, i32 0)
47 ; CHECK-NOT: call i8* @strrchr
51 %dst = call i8* @strrchr(i8* %src, i32 65280
    [all...]
strrchr-2.ll 1 ; Test that the strrchr libcall simplifier works correctly.
10 declare i8 @strrchr(i8*, i32)
14 ; CHECK: call i8 @strrchr
18 %dst = call i8 @strrchr(i8* %str, i32 119)
  /external/clang/test/Preprocessor/
pragma_poison.c 14 #define strrchr rindex2 macro
20 strrchr(some_string, 'h'); // ok.
  /external/valgrind/memcheck/tests/
strchr.c 5 // aliases, as are 'strrchr' and 'rindex'. In each case, the shorter name
16 b = strrchr(s, '1');
filter_strchr 9 s/: strrchr (vg_replace_strmem.c:/: rindex (vg_replace_strmem.c:/"
strchr.stderr.exp3 10 at 0x........: strrchr (vg_replace_strmem.c:...)
  /external/skia/src/utils/
SkOSFile.cpp 22 const char* filename = strrchr(fullPath, SkPATH_SEPARATOR);
35 const char* end = strrchr(fullPath, SkPATH_SEPARATOR);
  /external/clang/test/CodeGen/
pr9614.c 11 extern char *strrchr_foo (const char *__s, int __c) __asm ("strrchr");
36 // CHECK: call i8* @strrchr(
43 // CHECK: declare i8* @strrchr(i8*, i32)
libcalls-fno-builtin.c 14 char *strrchr(const char *s, int c);
63 char *t9(void) { return strrchr("hello, world", 'w'); }
65 // CHECK: strrchr
  /external/curl/src/
tool_bname.c 35 s1 = strrchr(path, '/');
36 s2 = strrchr(path, '\\');
  /external/e2fsprogs/util/
libecho.c 49 while((slash = strrchr(f, '/')) != NULL)
54 slash = strrchr(filepath, '\\');
  /external/libcxx/include/
cstring 46 const char* strrchr(const char* s, int c);
47 char* strrchr( char* s, int c);
90 using ::strrchr;
100 inline _LIBCPP_INLINE_VISIBILITY char* strrchr( char* __s, int __c) {return ::strrchr(__s, __c);}
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
cstring 46 const char* strrchr(const char* s, int c);
47 char* strrchr( char* s, int c);
90 using ::strrchr;
100 inline _LIBCPP_INLINE_VISIBILITY char* strrchr( char* __s, int __c) {return ::strrchr(__s, __c);}
  /prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/libcxx/include/
cstring 46 const char* strrchr(const char* s, int c);
47 char* strrchr( char* s, int c);
90 using ::strrchr;
100 inline _LIBCPP_INLINE_VISIBILITY char* strrchr( char* __s, int __c) {return ::strrchr(__s, __c);}
  /external/toybox/toys/posix/
rmdir.c 36 if (!(temp = strrchr(name, '/'))) return;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
pcrt32.h 31 #define _fstrrchr strrchr
  /external/webrtc/webrtc/system_wrappers/source/
logging.cc 37 const char* end1 = ::strrchr(file, '/');
38 const char* end2 = ::strrchr(file, '\\');
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-dynload/
syslog.so 
  /external/icu/icu4c/as_is/os400/
iculd.c 97 progshort=strrchr(prog,'/');
132 char *mend = strrchr(linkbuf,'.');
135 mend = strrchr(linkbuf,'/');
166 char *mend = strrchr(linkbuf,'.');
169 mend = strrchr(linkbuf,'/');
189 const char *p = strrchr(argv[i],'/');
  /toolchain/binutils/binutils-2.25/gprof/
source.c 77 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, '.');
  /external/valgrind/exp-sgcheck/
h_intercepts.c 48 #define STRRCHR(soname, fnname) \
62 // Apparently rindex() is the same thing as strrchr()
63 STRRCHR(VG_Z_LIBC_SONAME, strrchr)
64 STRRCHR(VG_Z_LIBC_SONAME, rindex)
66 STRRCHR(VG_Z_LIBC_SONAME, __GI_strrchr)
67 STRRCHR(VG_Z_LD_LINUX_SO_2, rindex)
69 STRRCHR(VG_Z_DYLD, strrchr)
70 STRRCHR(VG_Z_DYLD, rindex
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/
cstring 65 #undef strrchr
95 using ::strrchr;
112 strrchr(char* __s, int __n)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/
cstring 65 #undef strrchr
95 using ::strrchr;
112 strrchr(char* __s, int __n)

Completed in 767 milliseconds

1 2 3 4 5 6 7 8 91011>>