HomeSort by relevance Sort by last modified time
    Searched refs:memrchr (Results 1 - 23 of 23) sorted by null

  /bionic/libc/upstream-openbsd/lib/libc/string/
memrchr.c 1 /* $OpenBSD: memrchr.c,v 1.3 2015/08/31 02:53:57 guenther Exp $ */
26 memrchr(const void *s, int c, size_t n) function
39 DEF_WEAK(memrchr); variable
  /external/curl/lib/
curl_memrchr.h 40 #define memrchr(x,y,z) Curl_memrchr((x),(y),(z)) macro
cookie.c 662 endslash = memrchr(path, '/', (size_t)(queryp - path));
    [all...]
  /bionic/libc/include/
string.h 47 extern "C++" void* memrchr(void* __s, int __ch, size_t __n) __RENAME(memrchr) __attribute_pure__;
48 extern "C++" const void* memrchr(const void* __s, int __ch, size_t __n) __RENAME(memrchr) __attribute_pure__;
50 void* memrchr(const void* __s, int __ch, size_t __n) __attribute_pure__;
  /external/elfutils/libelf/
elf_strptr.c 169 if (likely (memrchr (&strscn->zdata_base[offset],
188 if (likely (memrchr (&strscn->rawdata_base[offset],
206 if (likely (memrchr ((char *) dl->data.d.d_buf
  /bionic/libc/include/bits/fortify/
string.h 41 extern void* __memrchr_real(const void*, int, size_t) __RENAME(memrchr); variable
242 __errordecl(__memrchr_buf_size_error, "memrchr called with size bigger than buffer");
424 void* memrchr(void* const __pass_object_size s, int c, size_t n) {
429 const void* memrchr(const void* const __pass_object_size s, int c, size_t n) {
435 void* memrchr(const void* const __pass_object_size s, int c, size_t n) __overloadable {
  /external/google-breakpad/src/common/linux/
elf_symbols_to_module.cc 147 const void* null_terminator = memrchr(string_section, '\0', string_size);
  /external/python/cpython3/Objects/stringlib/
fastsearch.h 85 /* memrchr() is a GNU extension, available since glibc 2.1.91.
91 p = memrchr(s, ch, n);
96 /* use memrchr if we can choose a needle without two many likely
104 void *candidate = memrchr(s, needle,
  /external/valgrind/memcheck/tests/
str_tester.c 588 it = "memrchr";
589 check (memrchr ("abcd", 'z', 5) == NULL, 1); /* Not found. */
592 check (memrchr (one, 'c', l) == one+2, 2); /* Basic test. */
593 check (memrchr (one, 'd', l) == one+3, 3); /* End of string. */
594 check (memrchr (one, 'a', l) == one, 4); /* Beginning. */
595 check (memrchr (one, '\0', l) == one+4, 5); /* Finding NUL. */
598 check (memrchr (one, 'b', l) == one+3, 6); /* Finding last. */
601 check (memrchr (one, 'b', l) == NULL, 7); /* Empty string. */
602 check (memrchr (one, '\0', l) == one, 8); /* NUL in empty string. */
620 check(memrchr(buf + align, 'x', len) == buf + align + pos, 9)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
string.h 115 extern "C++" void *memrchr (void *__s, int __c, size_t __n)
116 __THROW __asm ("memrchr") __attribute_pure__ __nonnull ((1));
117 extern "C++" __const void *memrchr (__const void *__s, int __c, size_t __n)
118 __THROW __asm ("memrchr") __attribute_pure__ __nonnull ((1));
120 extern void *memrchr (__const void *__s, int __c, size_t __n)
  /frameworks/base/libs/hwui/tests/macrobench/
main.cpp 85 char* found = (char*)memrchr(col2, ' ', 50);
  /bionic/libc/bionic/
fortify.cpp 149 __check_buffer_access("memrchr", "read from", n, actual_size);
150 return memrchr(const_cast<void *>(s), c, n);
  /bionic/libc/arch-x86/atom/string/
sse2-memrchr-atom.S 87 ENTRY (memrchr) function
778 END (memrchr)
  /bionic/tests/
fortify_test.cpp 227 ASSERT_FORTIFY(printf("%s", memrchr(myfoo.a, 'a', asize)));
228 ASSERT_FORTIFY(printf("%s", memrchr(static_cast<const void*>(myfoo.a), 'a', asize)));
string_test.cpp 807 TEST(STRING_TEST, memrchr) {
823 ASSERT_TRUE(memrchr(state.ptr1, seek_char, state.len[i]) == expected);
    [all...]
  /system/core/healthd/
healthd_mode_charger.cpp 232 nl = (char*)memrchr(ptr, '\n', cnt - 1);
  /external/compiler-rt/lib/msan/tests/
msan_test.cc     [all...]
  /external/llvm/lib/Transforms/Utils/
BuildLibCalls.cpp 242 case LibFunc::memrchr:
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
string.h 514 # define memrchr(s, c, n) __memrchr ((s), (c), (n)) macro
    [all...]
  /external/llvm/lib/Analysis/
TargetLibraryInfo.cpp 628 case LibFunc::memrchr:
    [all...]
  /external/valgrind/shared/
vg_replace_strmem.c 97 20360 MEMRCHR
909 /*---------------------- memrchr ----------------------*/
911 #define MEMRCHR(soname, fnname) \
926 MEMRCHR(VG_Z_LIBC_SONAME, memrchr)
929 //MEMRCHR(VG_Z_LIBC_SONAME, memrchr)
930 //MEMRCHR(VG_Z_DYLD, memrchr)
    [all...]
  /external/curl/
configure     [all...]
  /external/python/cpython3/
configure     [all...]

Completed in 1728 milliseconds