/external/elfutils/libelf/ |
D | elf_strptr.c | 169 if (likely (memrchr (&strscn->zdata_base[offset], in elf_strptr() 188 if (likely (memrchr (&strscn->rawdata_base[offset], in elf_strptr() 206 if (likely (memrchr ((char *) dl->data.d.d_buf in elf_strptr()
|
/external/valgrind/memcheck/tests/ |
D | str_tester.c | 589 check (memrchr ("abcd", 'z', 5) == NULL, 1); /* Not found. */ in test_memrchr() 592 check (memrchr (one, 'c', l) == one+2, 2); /* Basic test. */ in test_memrchr() 593 check (memrchr (one, 'd', l) == one+3, 3); /* End of string. */ in test_memrchr() 594 check (memrchr (one, 'a', l) == one, 4); /* Beginning. */ in test_memrchr() 595 check (memrchr (one, '\0', l) == one+4, 5); /* Finding NUL. */ in test_memrchr() 598 check (memrchr (one, 'b', l) == one+3, 6); /* Finding last. */ in test_memrchr() 601 check (memrchr (one, 'b', l) == NULL, 7); /* Empty string. */ in test_memrchr() 602 check (memrchr (one, '\0', l) == one, 8); /* NUL in empty string. */ in test_memrchr() 620 check(memrchr(buf + align, 'x', len) == buf + align + pos, 9); in test_memrchr() 621 check(memrchr(buf + align + pos + 1, 'x', len - (pos + 1)) == NULL, in test_memrchr()
|
/external/python/cpython3/Objects/stringlib/ |
D | fastsearch.h | 91 p = memrchr(s, ch, n); in STRINGLIB() 104 void *candidate = memrchr(s, needle, in STRINGLIB()
|
/external/curl/lib/ |
D | curl_memrchr.h | 40 #define memrchr(x,y,z) Curl_memrchr((x),(y),(z)) macro
|
D | cookie.c | 662 endslash = memrchr(path, '/', (size_t)(queryp - path)); in Curl_cookie_add()
|
D | curl_config.h.in | 458 /* Define to 1 if you have the memrchr function or macro. */
|
/external/google-breakpad/src/common/linux/ |
D | elf_symbols_to_module.cc | 147 const void* null_terminator = memrchr(string_section, '\0', string_size); in ELFSymbolsToModule()
|
/external/curl/ |
D | local-configure.patch | 19 /* Define to 1 if you have the memrchr function or macro. */
|
D | configure | 36259 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if memrchr can be linked" >&5 36260 $as_echo_n "checking if memrchr can be linked... " >&6; } 36305 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if memrchr seems a macro" >&5 36306 $as_echo_n "checking if memrchr seems a macro... " >&6; } 36342 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if memrchr is prototyped" >&5 36343 $as_echo_n "checking if memrchr is prototyped... " >&6; } 36351 $EGREP "memrchr" >/dev/null 2>&1; then : 36370 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if memrchr is compilable" >&5 36371 $as_echo_n "checking if memrchr is compilable... " >&6; } 36406 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if memrchr usage allowed" >&5 [all …]
|
/external/llvm/include/llvm/Analysis/ |
D | TargetLibraryInfo.def | 737 // void *memrchr(const void *s, int c, size_t n); 738 TLI_DEFINE_ENUM_INTERNAL(memrchr) 739 TLI_DEFINE_STRING_INTERNAL("memrchr")
|
/external/curl/m4/ |
D | curl-functions.m4 | 4620 dnl Verify if memrchr is available, prototyped, and 4635 AC_MSG_CHECKING([if memrchr can be linked]) 4637 AC_LANG_FUNC_LINK_TRY([memrchr]) 4647 AC_MSG_CHECKING([if memrchr seems a macro]) 4652 if(0 != memrchr(0, 0, 0)) 4665 AC_MSG_CHECKING([if memrchr is prototyped]) 4666 AC_EGREP_CPP([memrchr],[ 4679 AC_MSG_CHECKING([if memrchr is compilable]) 4684 if(0 != memrchr(0, 0, 0)) 4697 AC_MSG_CHECKING([if memrchr usage allowed]) [all …]
|
/external/compiler-rt/lib/msan/tests/ |
D | msan_test.cc | 2251 TEST(MemorySanitizer, memrchr) { in TEST() argument 2257 EXPECT_UMR(res = memrchr(x, '9', 10)); in TEST() 2261 res = memrchr(x, '0', 2); in TEST() 2263 EXPECT_UMR(res = memrchr(x, '7', 10)); in TEST()
|
/external/llvm/lib/Transforms/Utils/ |
D | BuildLibCalls.cpp | 242 case LibFunc::memrchr: in inferLibFuncAttributes()
|
/external/llvm/lib/Analysis/ |
D | TargetLibraryInfo.cpp | 628 case LibFunc::memrchr: in isValidProtoForLibFunc()
|
/external/valgrind/shared/ |
D | vg_replace_strmem.c | 926 MEMRCHR(VG_Z_LIBC_SONAME, memrchr)
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_common_interceptors.inc | 629 INTERCEPTOR(void*, memrchr, const void *s, int c, SIZE_T n) { 631 COMMON_INTERCEPTOR_ENTER(ctx, memrchr, s, c, n); 633 return REAL(memrchr)(s, c, n); 636 #define INIT_MEMRCHR COMMON_INTERCEPT_FUNCTION(memrchr)
|
/external/python/cpython3/ |
D | pyconfig.h.in | 607 /* Define to 1 if you have the `memrchr' function. */
|
D | configure.ac | 3402 memrchr mbrtowc mkdirat mkfifo \
|
D | configure | 11218 memrchr mbrtowc mkdirat mkfifo \
|
/external/compiler-rt/lib/dfsan/ |
D | libc_ubuntu1404_abilist.txt | 2275 fun:memrchr=uninstrumented
|
/external/google-breakpad/src/processor/testdata/symbols/libc-2.13.so/F4F8DFCD5A5FB5A7CE64717E9E6AE3890/ |
D | libc-2.13.so.sym | 568 PUBLIC 8d0e0 0 memrchr
|