Lines Matching defs:__s
147 inline _LIBCPP_HIDE_FROM_ABI wchar_t* __libcpp_wcschr(const wchar_t* __s, wchar_t __c) {
148 return (wchar_t*)wcschr(__s, __c);
150 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD const wchar_t* wcschr(const wchar_t* __s, wchar_t __c) {
151 return __libcpp_wcschr(__s, __c);
153 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD wchar_t* wcschr(wchar_t* __s, wchar_t __c) {
154 return __libcpp_wcschr(__s, __c);
168 inline _LIBCPP_HIDE_FROM_ABI wchar_t* __libcpp_wcsrchr(const wchar_t* __s, wchar_t __c) {
169 return (wchar_t*)wcsrchr(__s, __c);
171 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD const wchar_t* wcsrchr(const wchar_t* __s, wchar_t __c) {
172 return __libcpp_wcsrchr(__s, __c);
174 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD wchar_t* wcsrchr(wchar_t* __s, wchar_t __c) {
175 return __libcpp_wcsrchr(__s, __c);
189 inline _LIBCPP_HIDE_FROM_ABI wchar_t* __libcpp_wmemchr(const wchar_t* __s, wchar_t __c, size_t __n) {
190 return (wchar_t*)wmemchr(__s, __c, __n);
193 wmemchr(const wchar_t* __s, wchar_t __c, size_t __n) {
194 return __libcpp_wmemchr(__s, __c, __n);
196 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD wchar_t* wmemchr(wchar_t* __s, wchar_t __c, size_t __n) {
197 return __libcpp_wmemchr(__s, __c, __n);