/freebsd-src/contrib/llvm-project/libcxx/include/ |
H A D | 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()
|
H A D | 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-src/contrib/llvm-project/libcxx/include/__format/ |
H A D | 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-src/contrib/llvm-project/libcxx/include/__locale_dir/locale_base_api/ |
H A D | 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-src/contrib/llvm-project/libcxx/include/__iterator/ |
H A D | 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()
|
H A D | 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()
|
H A D | 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()
|
H A D | 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()
|
H A D | istream_iterator.h | 56 _LIBCPP_HIDE_FROM_ABI istream_iterator(istream_type& __s) : __in_stream_(std::addressof(__s)) { in istream_iterator()
|
H A D | common_iterator.h | 74 _LIBCPP_HIDE_FROM_ABI constexpr common_iterator(_Sent __s) : __hold_(in_place_type<_Sent>, std::move(__s)) {} in common_iterator() argument
|
/freebsd-src/contrib/llvm-project/libcxx/include/__filesystem/ |
H A D | operations.h | 148 inline _LIBCPP_HIDE_FROM_ABI bool exists(file_status __s) noexcept { in status_known() argument 149 return status_known(__s) && __s.type() != file_type::not_found; in exists() argument 155 if (status_known(__s)) in exists() local 169 is_block_file(file_status __s) is_block_file() argument 174 is_character_file(file_status __s) is_character_file() argument 181 is_directory(file_status __s) is_directory() argument 189 is_fifo(file_status __s) is_fifo() argument 194 is_regular_file(file_status __s) is_regular_file() argument 199 is_symlink(file_status __s) is_symlink() argument 204 is_other(file_status __s) is_other() argument 211 is_socket(file_status __s) is_socket() argument [all...] |
H A D | u8path.h | 79 u8path(const _Source & __s) u8path() argument
|
/freebsd-src/contrib/llvm-project/libcxx/include/__chrono/ |
H A D | ostream.h | 126 basic_ostringstream<_CharT, _Traits> __s; global() variable
|
H A D | convert_to_timespec.h | 31 seconds __s = duration_cast<seconds>(__ns); in __convert_to_timespec() local
|
/freebsd-src/contrib/llvm-project/libcxx/include/__random/ |
H A D | seed_seq.h | 76 for (_InputIterator __s = __first; __s != __last; ++__s) __init() local 85 const size_t __s = __v_.size(); generate() local
|
H A D | lognormal_distribution.h | 62 …_LIBCPP_HIDE_FROM_ABI explicit lognormal_distribution(result_type __m, result_type __s = 1) : __nd… in __nd_() argument
|
/freebsd-src/contrib/llvm-project/libcxx/include/__algorithm/ |
H A D | search.h | 93 const _Iter1 __s = __first1 + __size1 - _DiffT1(__size2 - 1); // Start of pattern match can't go beyond here in __search_random_access_impl() local 181 search(_ForwardIterator __f,_ForwardIterator __l,const _Searcher & __s) search() argument
|
H A D | search_n.h | 81 const auto __s = __first + __size1 - difference_type(__count - 1); // Start of pattern match can't go beyond here in __search_n_random_access_impl() local
|
/freebsd-src/contrib/llvm-project/libcxx/src/ |
H A D | 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-src/contrib/llvm-project/libcxx/include/__memory/ |
H A D | allocator_destructor.h | 34 …_LIBCPP_HIDE_FROM_ABI __allocator_destructor(_Alloc& __a, size_type __s) _NOEXCEPT : __alloc_(__a)… in __allocator_destructor()
|
/freebsd-src/contrib/llvm-project/libcxx/include/experimental/__simd/ |
H A D | reference.h | 34 __simd_reference(_Storage & __s,size_t __idx) __simd_reference() argument
|
/freebsd-src/contrib/llvm-project/libcxx/include/__ranges/ |
H A D | take_while_view.h | 119 _LIBCPP_HIDE_FROM_ABI constexpr __sentinel(__sentinel<!_Const> __s) in __sentinel() function
|
H A D | drop_view.h | 127 const auto __s = ranges::size(__self.__base_); in __size() local
|
H A D | take_view.h | 178 _LIBCPP_HIDE_FROM_ABI constexpr __sentinel(__sentinel<!_Const> __s) in __sentinel() argument
|
/freebsd-src/contrib/llvm-project/libcxx/include/__mdspan/ |
H A D | layout_right.h | 178 index_type __s = 1; in stride() local
|