Lines Matching defs:__str
49 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 size_t __constexpr_strlen(const _Tp* __str) _NOEXCEPT {
56 return __builtin_strlen(__str);
59 for (; __str[__i] != '\0'; ++__i)
63 return __builtin_strlen(reinterpret_cast<const char*>(__str));
130 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 _Tp* __constexpr_memchr(_Tp* __str, _Up __value, size_t __count) {
138 return __builtin_char_memchr(__str, __value, __count);
142 if (*__str == __value)
143 return __str;
144 ++__str;
150 return static_cast<_Tp*>(__builtin_memchr(__str, __value_buffer, __count));