Home
last modified time | relevance | path

Searched defs:__s (Results 1 – 25 of 43) sorted by relevance

12

/freebsd/contrib/llvm-project/libcxx/include/
H A Dwchar.h147 inline _LIBCPP_HIDE_FROM_ABI wchar_t* __libcpp_wcschr(const wchar_t* __s, wchar_t __c) { in __libcpp_wcschr() argument
151 return __libcpp_wcschr(__s, __c); in wcschr() argument
149 wcschr(const wchar_t * __s,wchar_t __c) wcschr() argument
161 __libcpp_wcsrchr(const wchar_t * __s,wchar_t __c) __libcpp_wcsrchr() argument
163 wcsrchr(const wchar_t * __s,wchar_t __c) wcsrchr() argument
165 wcsrchr(wchar_t * __s,wchar_t __c) wcsrchr() argument
175 __libcpp_wmemchr(const wchar_t * __s,wchar_t __c,size_t __n) __libcpp_wmemchr() argument
177 wmemchr(const wchar_t * __s,wchar_t __c,size_t __n) wmemchr() argument
179 wmemchr(wchar_t * __s,wchar_t __c,size_t __n) wmemchr() argument
[all...]
H A Dstring.h73 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD const char* strchr(const char* __s, int __c) { in strchr() argument
76 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD char* strchr(char* __s, int __c) { in strchr() argument
87 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD const char* strrchr(const char* __s, int __c) { in strrchr() argument
90 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD char* strrchr(char* __s, int __c) { in strrchr() argument
94 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD const void* memchr(const void* __s, int __c, size_t __n) { in memchr() argument
97 memchr(void * __s,int __c,size_t __n) memchr() argument
[all...]
/freebsd/contrib/llvm-project/libcxx/include/__format/
H A Dformat_error.h29 _LIBCPP_HIDE_FROM_ABI explicit format_error(const string& __s) : runtime_error(__s) {} in format_error() argument
31 format_error(const char * __s) format_error() argument
39 __throw_format_error(const char * __s) __throw_format_error() argument
/freebsd/contrib/llvm-project/libcxx/include/__locale_dir/locale_base_api/
H A Dbsd_locale_fallbacks.h77 return mbrlen(__s, __n, __ps); in __libcpp_mbrtowc_l() argument
62 __libcpp_wcrtomb_l(char * __s,wchar_t __wc,mbstate_t * __ps,locale_t __l) __libcpp_wcrtomb_l() argument
92 __libcpp_mbrlen_l(const char * __s,size_t __n,mbstate_t * __ps,locale_t __l) __libcpp_mbrlen_l() argument
117 __libcpp_snprintf_l(char * __s,size_t __n,locale_t __l,const char * __format,...) __libcpp_snprintf_l() argument
127 __libcpp_asprintf_l(char ** __s,locale_t __l,const char * __format,...) __libcpp_asprintf_l() argument
137 __libcpp_sscanf_l(const char * __s,locale_t __l,const char * __format,...) __libcpp_sscanf_l() argument
[all...]
/freebsd/contrib/llvm-project/libcxx/include/__iterator/
H A Dmove_sentinel.h42 _LIBCPP_HIDE_FROM_ABI constexpr move_sentinel& operator=(const move_sentinel<_S2>& __s) { in move_sentinel() argument
37 move_sentinel(_Sent __s) move_sentinel() argument
H A Distreambuf_iterator.h54 __proxy(char_type __c,streambuf_type * __s) __proxy() argument
74 istreambuf_iterator(istream_type & __s) istreambuf_iterator() argument
76 istreambuf_iterator(streambuf_type * __s) istreambuf_iterator() argument
H A Dostream_iterator.h52 ostream_iterator(ostream_type & __s) ostream_iterator() argument
54 ostream_iterator(ostream_type & __s,const _CharT * __delimiter) ostream_iterator() argument
H A Dostreambuf_iterator.h53 _LIBCPP_HIDE_FROM_ABI ostreambuf_iterator(ostream_type& __s) _NOEXCEPT : __sbuf_(__s.rdbuf()) {} in ostreambuf_iterator() argument
51 ostreambuf_iterator(ostream_type & __s) ostreambuf_iterator() argument
H A Distream_iterator.h53 istream_iterator(istream_type & __s) istream_iterator() argument
H A Dcommon_iterator.h74 …_LIBCPP_HIDE_FROM_ABI constexpr common_iterator(_Sent __s) : __hold_(in_place_type<_Sent>, std::mo… in common_iterator()
/freebsd/contrib/llvm-project/libcxx/include/__bit/
H A Drotate.h27 _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/contrib/llvm-project/libcxx/include/__filesystem/
H A Doperations.h147 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 …]
H A Du8path.h78 _LIBCPP_HIDE_FROM_ABI _LIBCPP_DEPRECATED_WITH_CHAR8_T path u8path(const _Source& __s) { in u8path()
/freebsd/contrib/llvm-project/libcxx/include/__chrono/
H A Dostream.h129 basic_ostringstream<_CharT, _Traits> __s; variable
H A Dconvert_to_timespec.h33 seconds __s = duration_cast<seconds>(__ns); __convert_to_timespec() local
/freebsd/contrib/llvm-project/libcxx/include/__random/
H A Dseed_seq.h77 for (_InputIterator __s = __first; __s != __last; ++__s) in __init() local
91 const size_t __s = __v_.size(); in generate() local
H A Dlognormal_distribution.h68 __nd_(__m,__s) __nd_() argument
/freebsd/contrib/llvm-project/libcxx/src/
H A Dthread.cpp187 __make_ready_at_thread_exit(__assoc_sub_state * __s) __make_ready_at_thread_exit() argument
212 __make_ready_at_thread_exit(__assoc_sub_state * __s) __make_ready_at_thread_exit() argument
/freebsd/contrib/llvm-project/libcxx/include/__memory/
H A Dallocator_destructor.h32 __allocator_destructor(_Alloc & __a,size_type __s) __allocator_destructor() argument
H A Dinout_ptr.h98 _LIBCPP_HIDE_FROM_ABI auto inout_ptr(_Smart& __s, _Args&&... __args) { in inout_ptr()
H A Dout_ptr.h90 _LIBCPP_HIDE_FROM_ABI auto out_ptr(_Smart& __s, _Args&&... __args) { in out_ptr()
/freebsd/contrib/llvm-project/libcxx/include/__algorithm/
H A Dsearch.h93 …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/contrib/llvm-project/libcxx/include/__ostream/
H A Dbasic_ostream.h625 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/contrib/llvm-project/libcxx/include/__ranges/
H A Dtake_while_view.h128 __sentinel(__sentinel<!_Const> __s) __sentinel() argument
/freebsd/contrib/llvm-project/libcxx/include/experimental/__simd/
H A Dreference.h38 _LIBCPP_HIDE_FROM_ABI __simd_reference(_Storage& __s, size_t __idx) : __s_(__s), __idx_(__idx) {} in __simd_reference()

12