Searched defs:memchr (Results 1 - 6 of 6) sorted by relevance

/external/syslinux/com32/lib/
H A Dmemchr.c2 * memchr.c
8 void *memchr(const void *s, int c, size_t n) function
/external/clang/test/CodeGen/
H A Dpr9614.c21 extern inline __attribute__((__always_inline__, __gnu_inline__)) void *memchr(void *__s, int __c, __SIZE_TYPE__ __n) { function
30 memchr("", '.', 0);
38 // CHECK: call i8* @memchr(
44 // CHECK: declare i8* @memchr(
/external/libcxx/include/
H A Dstring.h36 const void* memchr(const void* s, int c, size_t n);
37 void* memchr( void* s, int c, size_t n);
95 void* __libcpp_memchr(const void* __s, int __c, size_t __n) {return (void*)memchr(__s, __c, __n);}
97 const void* memchr(const void* __s, int __c, size_t __n) {return __libcpp_memchr(__s, __c, __n);} function
99 void* memchr( void* __s, int __c, size_t __n) {return __libcpp_memchr(__s, __c, __n);} function
/external/syslinux/gpxe/src/core/
H A Dstring.c317 * memchr - Find a character in an area of memory.
325 void * memchr(const void *s, int c, size_t n) function
/external/compiler-rt/lib/asan/
H A Dasan_win_dll_thunk.cc393 INTERCEPT_LIBRARY_FUNCTION(memchr); variable
/external/v8/src/builtins/
H A Dbuiltins-string.cc958 // Call out to the highly optimized memchr to perform the actual byte
960 Node* memchr = local
964 MachineType::IntPtr(), MachineType::UintPtr(), memchr,

Completed in 827 milliseconds