Searched refs:__libcpp_memchr (Results 1 - 1 of 1) sorted by path

/freebsd-11-stable/contrib/llvm-project/libcxx/include/
H A Dstring.h94 void* __libcpp_memchr(const void* __s, int __c, size_t __n) {return (void*)memchr(__s, __c, __n);} function
96 const void* memchr(const void* __s, int __c, size_t __n) {return __libcpp_memchr(__s, __c, __n);}
98 void* memchr( void* __s, int __c, size_t __n) {return __libcpp_memchr(__s, __c, __n);}

Completed in 152 milliseconds