| /freebsd-head/contrib/llvm-project/libcxx/include/ |
| HD | wchar.h | 147 inline _LIBCPP_HIDE_FROM_ABI wchar_t* __libcpp_wcschr(const wchar_t* __s, wchar_t __c) { in __libcpp_wcschr() 150 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD const wchar_t* wcschr(const wchar_t* __s, w… in wcschr() 153 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD wchar_t* wcschr(wchar_t* __s, wchar_t __c) { in wcschr() 168 inline _LIBCPP_HIDE_FROM_ABI wchar_t* __libcpp_wcsrchr(const wchar_t* __s, wchar_t __c) { in __libcpp_wcsrchr() 171 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD const wchar_t* wcsrchr(const wchar_t* __s, … in wcsrchr() 174 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD wchar_t* wcsrchr(wchar_t* __s, wchar_t __c)… in wcsrchr() 189 inline _LIBCPP_HIDE_FROM_ABI wchar_t* __libcpp_wmemchr(const wchar_t* __s, wchar_t __c, size_t __n)… in __libcpp_wmemchr() 193 wmemchr(const wchar_t* __s, wchar_t __c, size_t __n) { in wmemchr() 196 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD wchar_t* wmemchr(wchar_t* __s, wchar_t __c,… in wmemchr()
|
| HD | string.h | 73 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD const char* strchr(const char* __s, int __c… in strchr() 76 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD char* strchr(char* __s, int __c) { in strchr() 87 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD const char* strrchr(const char* __s, int __… in strrchr() 90 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD char* strrchr(char* __s, int __c) { in strrchr() 94 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD const void* memchr(const void* __s, int __c… in memchr() 97 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD void* memchr(void* __s, int __c, size_t __n… in memchr()
|
| /freebsd-head/contrib/llvm-project/libcxx/include/__format/ |
| HD | format_error.h | 29 _LIBCPP_HIDE_FROM_ABI explicit format_error(const string& __s) : runtime_error(__s) {} in format_error() 30 _LIBCPP_HIDE_FROM_ABI explicit format_error(const char* __s) : runtime_error(__s) {} in format_error() 38 _LIBCPP_NORETURN inline _LIBCPP_HIDE_FROM_ABI void __throw_format_error(const char* __s) { in __throw_format_error()
|
| /freebsd-head/contrib/llvm-project/libcxx/include/__locale_dir/locale_base_api/ |
| HD | bsd_locale_fallbacks.h | 53 inline _LIBCPP_HIDE_FROM_ABI size_t __libcpp_wcrtomb_l(char* __s, wchar_t __wc, mbstate_t* __ps, lo… in __libcpp_wcrtomb_l() 65 __libcpp_mbrtowc_l(wchar_t* __pwc, const char* __s, size_t __n, mbstate_t* __ps, locale_t __l) { in __libcpp_mbrtowc_l() 75 inline _LIBCPP_HIDE_FROM_ABI size_t __libcpp_mbrlen_l(const char* __s, size_t __n, mbstate_t* __ps,… in __libcpp_mbrlen_l() 95 char* __s, size_t __n, locale_t __l, const char* __format, ...) { in __libcpp_snprintf_l() 105 char** __s, locale_t __l, const char* __format, ...) { in __libcpp_asprintf_l() 115 const char* __s, locale_t __l, const char* __format, ...) { in __libcpp_sscanf_l()
|
| /freebsd-head/contrib/llvm-project/libcxx/include/__iterator/ |
| HD | move_sentinel.h | 34 _LIBCPP_HIDE_FROM_ABI constexpr explicit move_sentinel(_Sent __s) : __last_(std::move(__s)) {} in move_sentinel() 38 …_LIBCPP_HIDE_FROM_ABI constexpr move_sentinel(const move_sentinel<_S2>& __s) : __last_(__s.base())… in move_sentinel()
|
| HD | istreambuf_iterator.h | 53 …_LIBCPP_HIDE_FROM_ABI explicit __proxy(char_type __c, streambuf_type* __s) : __keep_(__c), __sbuf_… in __proxy() 71 _LIBCPP_HIDE_FROM_ABI istreambuf_iterator(istream_type& __s) _NOEXCEPT : __sbuf_(__s.rdbuf()) {} in istreambuf_iterator() 72 _LIBCPP_HIDE_FROM_ABI istreambuf_iterator(streambuf_type* __s) _NOEXCEPT : __sbuf_(__s) {} in istreambuf_iterator()
|
| HD | ostreambuf_iterator.h | 53 _LIBCPP_HIDE_FROM_ABI ostreambuf_iterator(ostream_type& __s) _NOEXCEPT : __sbuf_(__s.rdbuf()) {} in ostreambuf_iterator() 54 _LIBCPP_HIDE_FROM_ABI ostreambuf_iterator(streambuf_type* __s) _NOEXCEPT : __sbuf_(__s) {} in ostreambuf_iterator()
|
| HD | ostream_iterator.h | 55 _LIBCPP_HIDE_FROM_ABI ostream_iterator(ostream_type& __s) _NOEXCEPT in ostream_iterator() 58 _LIBCPP_HIDE_FROM_ABI ostream_iterator(ostream_type& __s, const _CharT* __delimiter) _NOEXCEPT in ostream_iterator()
|
| HD | istream_iterator.h | 56 _LIBCPP_HIDE_FROM_ABI istream_iterator(istream_type& __s) : __in_stream_(std::addressof(__s)) { in istream_iterator()
|
| HD | common_iterator.h | 74 …_LIBCPP_HIDE_FROM_ABI constexpr common_iterator(_Sent __s) : __hold_(in_place_type<_Sent>, std::mo… in common_iterator()
|
| /freebsd-head/contrib/llvm-project/libcxx/include/__bit/ |
| HD | rotate.h | 27 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 _Tp __rotl(_Tp __x, int __s) _NOEXCEPT { in __rotl() 42 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 _Tp __rotr(_Tp __x, int __s) _NOEXCEPT { in __rotr()
|
| /freebsd-head/contrib/llvm-project/libcxx/include/__filesystem/ |
| HD | operations.h | 147 inline _LIBCPP_HIDE_FROM_ABI bool status_known(file_status __s) noexcept { return __s.type() != fil… in status_known() 148 inline _LIBCPP_HIDE_FROM_ABI bool exists(file_status __s) noexcept { in exists() 154 auto __s = __status(__p, &__ec); in exists() local 168 inline _LIBCPP_HIDE_FROM_ABI bool is_block_file(file_status __s) noexcept { return __s.type() == fi… in is_block_file() 173 inline _LIBCPP_HIDE_FROM_ABI bool is_character_file(file_status __s) noexcept { in is_character_file() 180 inline _LIBCPP_HIDE_FROM_ABI bool is_directory(file_status __s) noexcept { return __s.type() == fil… in is_directory() 188 inline _LIBCPP_HIDE_FROM_ABI bool is_fifo(file_status __s) noexcept { return __s.type() == file_typ… in is_fifo() 193 inline _LIBCPP_HIDE_FROM_ABI bool is_regular_file(file_status __s) noexcept { return __s.type() == … in is_regular_file() 198 inline _LIBCPP_HIDE_FROM_ABI bool is_symlink(file_status __s) noexcept { return __s.type() == file_… in is_symlink() 203 inline _LIBCPP_HIDE_FROM_ABI bool is_other(file_status __s) noexcept { in is_other() [all …]
|
| HD | u8path.h | 78 _LIBCPP_HIDE_FROM_ABI _LIBCPP_DEPRECATED_WITH_CHAR8_T path u8path(const _Source& __s) { in u8path()
|
| /freebsd-head/contrib/llvm-project/libcxx/include/__chrono/ |
| HD | ostream.h | 129 basic_ostringstream<_CharT, _Traits> __s; variable
|
| HD | convert_to_timespec.h | 31 seconds __s = duration_cast<seconds>(__ns); in __convert_to_timespec() local
|
| /freebsd-head/contrib/llvm-project/libcxx/include/__random/ |
| HD | seed_seq.h | 77 for (_InputIterator __s = __first; __s != __last; ++__s) in __init() local 91 const size_t __s = __v_.size(); in generate() local
|
| HD | lognormal_distribution.h | 62 …_LIBCPP_HIDE_FROM_ABI explicit lognormal_distribution(result_type __m, result_type __s = 1) : __nd… in __nd_() argument
|
| /freebsd-head/contrib/llvm-project/libcxx/src/ |
| HD | thread.cpp | 156 void __thread_struct_imp::__make_ready_at_thread_exit(__assoc_sub_state* __s) { in __make_ready_at_thread_exit() 171 void __thread_struct::__make_ready_at_thread_exit(__assoc_sub_state* __s) { __p_->__make_ready_at_t… in __make_ready_at_thread_exit()
|
| /freebsd-head/contrib/llvm-project/libcxx/include/__memory/ |
| HD | allocator_destructor.h | 34 …_LIBCPP_HIDE_FROM_ABI __allocator_destructor(_Alloc& __a, size_type __s) _NOEXCEPT : __alloc_(__a)… in __allocator_destructor()
|
| HD | inout_ptr.h | 98 _LIBCPP_HIDE_FROM_ABI auto inout_ptr(_Smart& __s, _Args&&... __args) { in inout_ptr()
|
| HD | out_ptr.h | 90 _LIBCPP_HIDE_FROM_ABI auto out_ptr(_Smart& __s, _Args&&... __args) { in out_ptr()
|
| /freebsd-head/contrib/llvm-project/libcxx/include/__algorithm/ |
| HD | search.h | 93 …const _Iter1 __s = __first1 + __size1 - _DiffT1(__size2 - 1); // Start of pattern match can't go b… in __search_random_access_impl() local 184 search(_ForwardIterator __f, _ForwardIterator __l, const _Searcher& __s) { in search()
|
| /freebsd-head/contrib/llvm-project/libcxx/include/__ostream/ |
| HD | basic_ostream.h | 625 const char* __s = (const char*)__str; variable 632 const char* __s = (const char*)__str; variable 658 basic_ostream<_CharT, _Traits>& basic_ostream<_CharT, _Traits>::write(const char_type* __s, streams… in write()
|
| /freebsd-head/contrib/llvm-project/libcxx/include/__ranges/ |
| HD | take_while_view.h | 119 _LIBCPP_HIDE_FROM_ABI constexpr __sentinel(__sentinel<!_Const> __s) in __sentinel() function
|
| HD | drop_view.h | 127 const auto __s = ranges::size(__self.__base_); in __size() local
|