| /freebsd/contrib/llvm-project/libcxx/include/__locale_dir/ |
| H A D | pad_and_output.h | 26 …_OutputIterator __s, const _CharT* __ob, const _CharT* __op, const _CharT* __oe, ios_base& __iob, … in __pad_and_output() argument 33 for (; __ob < __op; ++__ob, ++__s) in __pad_and_output() 34 *__s = *__ob; in __pad_and_output() 35 for (; __ns; --__ns, ++__s) in __pad_and_output() 36 *__s = __fl; in __pad_and_output() 37 for (; __ob < __oe; ++__ob, ++__s) in __pad_and_output() 38 *__s = *__ob; in __pad_and_output() 40 return __s; in __pad_and_output() 45 ostreambuf_iterator<_CharT, _Traits> __s, in __pad_and_output() argument 51 if (__s.__sbuf_ == nullptr) in __pad_and_output() [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/__functional/ |
| H A D | hash.h | 90 const char* __s = static_cast<const char*>(__key); 93 return __hash_len_0_to_16(__s, __len); 95 return __hash_len_17_to_32(__s, __len); 98 return __hash_len_33_to_64(__s, __len); 103 _Size __x = std::__loadword<_Size>(__s + __len - 40); 104 _Size __y = std::__loadword<_Size>(__s + __len - 16) + std::__loadword<_Size>(__s + __len - 56); 106 …__hash_len_16(std::__loadword<_Size>(__s + __len - 48) + __len, std::__loadword<_Size>(__s + __len… 107 pair<_Size, _Size> __v = __weak_hash_len_32_with_seeds(__s + __len - 64, __len, __z); 108 pair<_Size, _Size> __w = __weak_hash_len_32_with_seeds(__s + __len - 32, __y + __k1, __x); 109 __x = __x * __k1 + std::__loadword<_Size>(__s); [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/__functional/ |
| H A D | hash.h | 85 const char* __s = static_cast<const char*>(__key); 88 return __hash_len_0_to_16(__s, __len); 90 return __hash_len_17_to_32(__s, __len); 93 return __hash_len_33_to_64(__s, __len); 98 _Size __x = std::__loadword<_Size>(__s + __len - 40); 99 _Size __y = std::__loadword<_Size>(__s + __len - 16) + std::__loadword<_Size>(__s + __len - 56); 101 …__hash_len_16(std::__loadword<_Size>(__s + __len - 48) + __len, std::__loadword<_Size>(__s + __len… 102 pair<_Size, _Size> __v = __weak_hash_len_32_with_seeds(__s + __len - 64, __len, __z); 103 pair<_Size, _Size> __w = __weak_hash_len_32_with_seeds(__s + __len - 32, __y + __k1, __x); 104 __x = __x * __k1 + std::__loadword<_Size>(__s); [all …]
|
| /freebsd/contrib/llvm-project/libcxx/src/ |
| H A D | regex.cpp | 356 void __match_any_but_newline<char>::__exec(__state& __s) const { in __exec() 357 if (__s.__current_ != __s.__last_) { in __exec() 358 switch (*__s.__current_) { in __exec() 361 __s.__do_ = __state::__reject; in __exec() 362 __s.__node_ = nullptr; in __exec() 365 __s.__do_ = __state::__accept_and_consume; in __exec() 366 ++__s.__current_; in __exec() 367 __s.__node_ = this->first(); in __exec() 371 __s.__do_ = __state::__reject; in __exec() 372 __s.__node_ = nullptr; in __exec() [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/experimental/__simd/ |
| H A D | scalar.h | 63 static _LIBCPP_HIDE_FROM_ABI void __load(_SimdStorage& __s, const _Up* __mem) noexcept { 64 __s.__data = static_cast<_Tp>(__mem[0]); 68 static _LIBCPP_HIDE_FROM_ABI void __store(_SimdStorage __s, _Up* __mem) noexcept { 69 *__mem = static_cast<_Up>(__s.__data); 72 static _LIBCPP_HIDE_FROM_ABI void __increment(_SimdStorage& __s) noexcept { ++__s.__data; } 74 static _LIBCPP_HIDE_FROM_ABI void __decrement(_SimdStorage& __s) noexcept { --__s.__data; } 76 …static _LIBCPP_HIDE_FROM_ABI _MaskStorage __negate(_SimdStorage __s) noexcept { return {!__s.__dat… 78 static _LIBCPP_HIDE_FROM_ABI _SimdStorage __bitwise_not(_SimdStorage __s) noexcept { 79 return {static_cast<_Tp>(~__s.__data)}; 82 static _LIBCPP_HIDE_FROM_ABI _SimdStorage __unary_minus(_SimdStorage __s) noexcept { [all …]
|
| H A D | vec_ext.h | 80 static _LIBCPP_HIDE_FROM_ABI void __load(_SimdStorage& __s, const _Up* __mem) noexcept { 82 __s.__data[__i] = static_cast<_Tp>(__mem[__i]); 86 static _LIBCPP_HIDE_FROM_ABI void __store(_SimdStorage __s, _Up* __mem) noexcept { 88 __mem[__i] = static_cast<_Up>(__s.__data[__i]); 91 …static _LIBCPP_HIDE_FROM_ABI void __increment(_SimdStorage& __s) noexcept { __s.__data = __s.__dat… 93 …static _LIBCPP_HIDE_FROM_ABI void __decrement(_SimdStorage& __s) noexcept { __s.__data = __s.__dat… 95 …static _LIBCPP_HIDE_FROM_ABI _MaskStorage __negate(_SimdStorage __s) noexcept { return {!__s.__dat… 97 …static _LIBCPP_HIDE_FROM_ABI _SimdStorage __bitwise_not(_SimdStorage __s) noexcept { return {~__s.… 99 …static _LIBCPP_HIDE_FROM_ABI _SimdStorage __unary_minus(_SimdStorage __s) noexcept { return {-__s.… 115 static _LIBCPP_HIDE_FROM_ABI void __load(_MaskStorage& __s, const bool* __mem) noexcept { [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/ |
| 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() argument 148 return (wchar_t*)wcschr(__s, __c); in __libcpp_wcschr() 150 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD const wchar_t* wcschr(const wchar_t* __s, w… in wcschr() argument 151 return __libcpp_wcschr(__s, __c); in wcschr() 153 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD wchar_t* wcschr(wchar_t* __s, wchar_t __c) { in wcschr() argument 154 return __libcpp_wcschr(__s, __c); in wcschr() 168 inline _LIBCPP_HIDE_FROM_ABI wchar_t* __libcpp_wcsrchr(const wchar_t* __s, wchar_t __c) { in __libcpp_wcsrchr() argument 169 return (wchar_t*)wcsrchr(__s, __c); in __libcpp_wcsrchr() 171 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD const wchar_t* wcsrchr(const wchar_t* __s, … in wcsrchr() argument 172 return __libcpp_wcsrchr(__s, __c); in wcsrchr() [all …]
|
| H A D | string.h | 73 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD const char* strchr(const char* __s, int __c… in strchr() argument 74 return __builtin_strchr(__s, __c); in strchr() 76 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD char* strchr(char* __s, int __c) { in strchr() argument 77 return __builtin_strchr(__s, __c); in strchr() 87 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD const char* strrchr(const char* __s, int __… in strrchr() argument 88 return __builtin_strrchr(__s, __c); in strrchr() 90 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD char* strrchr(char* __s, int __c) { in strrchr() argument 91 return __builtin_strrchr(__s, __c); in strrchr() 94 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD const void* memchr(const void* __s, int __c… in memchr() argument 95 return __builtin_memchr(__s, __c, __n); in memchr() [all …]
|
| H A D | stdexcept | 63 __libcpp_refstring(const __libcpp_refstring& __s) _NOEXCEPT; 64 __libcpp_refstring& operator=(const __libcpp_refstring& __s) _NOEXCEPT; 96 _LIBCPP_HIDE_FROM_ABI explicit logic_error(const char* __s) : exception(__s) {} 120 _LIBCPP_HIDE_FROM_ABI explicit runtime_error(const char* __s) : exception(__s) {} 126 _LIBCPP_HIDE_FROM_ABI explicit domain_error(const string& __s) : logic_error(__s) {} 127 _LIBCPP_HIDE_FROM_ABI explicit domain_error(const char* __s) : logic_error(__s) {} 138 _LIBCPP_HIDE_FROM_ABI explicit invalid_argument(const string& __s) : logic_error(__s) {} 139 _LIBCPP_HIDE_FROM_ABI explicit invalid_argument(const char* __s) : logic_error(__s) {} 150 _LIBCPP_HIDE_FROM_ABI explicit length_error(const string& __s) : logic_error(__s) {} 151 _LIBCPP_HIDE_FROM_ABI explicit length_error(const char* __s) : logic_error(__s) {} [all …]
|
| H A D | string_view | 252 …_ABI inline size_t __char_traits_length_checked(const typename _Traits::char_type* __s) _NOEXCEPT { 255 … __s != nullptr, "null pointer passed to non-null argument of char_traits<...>::length"), 256 _Traits::length(__s); 296 _LIBCPP_HIDE_FROM_ABI basic_string_view(const _CharT* __s, size_type __len) _NOEXCEPT 297 : __data_(__s), 300 _LIBCPP_HIDE_FROM_ABI basic_string_view(const _CharT* __s) 301 : __data_(__s), __size_(std::__char_traits_length_checked<_Traits>(__s)) {} 384 _LIBCPP_HIDE_FROM_ABI size_type copy(_CharT* __s, size_type __n, size_type __pos = 0) const { 388 _Traits::copy(__s, data() + __pos, __rlen); 414 …LIBCPP_HIDE_FROM_ABI int compare(const _CharT* __s) const _NOEXCEPT { return compare(basic_string_… [all …]
|
| H A D | regex | 1087 string_type __s(__f, __l); 1088 return __col_->transform(__s.data(), __s.data() + __s.size()); 1111 const string_type __s(__f, __l); 1112 string_type __d = __col_->transform(__s.data(), __s.data() + __s.size()); 1131 const string_type __s(__f, __l); 1132 string_type __d = __col_->transform(__s.data(), __s.data() + __s.size()); 1149 _LIBCPP_EXPORTED_FROM_ABI string __get_collation_name(const char* __s); 1155 string_type __s(__f, __l); 1157 if (!__s.empty()) { 1158 __r = std::__get_collation_name(__s.c_str()); [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/ |
| H A D | wchar.h | 141 inline _LIBCPP_HIDE_FROM_ABI wchar_t* __libcpp_wcschr(const wchar_t* __s, wchar_t __c) { in __libcpp_wcschr() argument 142 return (wchar_t*)wcschr(__s, __c); in __libcpp_wcschr() 144 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD const wchar_t* wcschr(const wchar_t* __s, w… in wcschr() argument 145 return __libcpp_wcschr(__s, __c); in wcschr() 147 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD wchar_t* wcschr(wchar_t* __s, wchar_t __c) { in wcschr() argument 148 return __libcpp_wcschr(__s, __c); in wcschr() 162 inline _LIBCPP_HIDE_FROM_ABI wchar_t* __libcpp_wcsrchr(const wchar_t* __s, wchar_t __c) { in __libcpp_wcsrchr() argument 163 return (wchar_t*)wcsrchr(__s, __c); in __libcpp_wcsrchr() 165 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD const wchar_t* wcsrchr(const wchar_t* __s, … in wcsrchr() argument 166 return __libcpp_wcsrchr(__s, __c); in wcsrchr() [all …]
|
| H A D | string.h | 77 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD const char* strchr(const char* __s, int __c… in strchr() argument 78 return __builtin_strchr(__s, __c); in strchr() 80 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD char* strchr(char* __s, int __c) { in strchr() argument 81 return __builtin_strchr(__s, __c); in strchr() 91 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD const char* strrchr(const char* __s, int __… in strrchr() argument 92 return __builtin_strrchr(__s, __c); in strrchr() 94 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD char* strrchr(char* __s, int __c) { in strrchr() argument 95 return __builtin_strrchr(__s, __c); in strrchr() 98 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD const void* memchr(const void* __s, int __c… in memchr() argument 99 return __builtin_memchr(__s, __c, __n); in memchr() [all …]
|
| H A D | stdexcept | 66 __libcpp_refstring(const __libcpp_refstring& __s) _NOEXCEPT; 67 __libcpp_refstring& operator=(const __libcpp_refstring& __s) _NOEXCEPT; 99 _LIBCPP_HIDE_FROM_ABI explicit logic_error(const char* __s) : exception(__s) {} 123 _LIBCPP_HIDE_FROM_ABI explicit runtime_error(const char* __s) : exception(__s) {} 129 _LIBCPP_HIDE_FROM_ABI explicit domain_error(const string& __s) : logic_error(__s) {} 130 _LIBCPP_HIDE_FROM_ABI explicit domain_error(const char* __s) : logic_error(__s) {} 141 _LIBCPP_HIDE_FROM_ABI explicit invalid_argument(const string& __s) : logic_error(__s) {} 142 _LIBCPP_HIDE_FROM_ABI explicit invalid_argument(const char* __s) : logic_error(__s) {} 153 _LIBCPP_HIDE_FROM_ABI explicit length_error(const string& __s) : logic_error(__s) {} 154 _LIBCPP_HIDE_FROM_ABI explicit length_error(const char* __s) : logic_error(__s) {} [all …]
|
| H A D | string_view | 273 __char_traits_length_checked(const typename _Traits::char_type* __s) _NOEXCEPT { 276 … __s != nullptr, "null pointer passed to non-null argument of char_traits<...>::length"), 277 _Traits::length(__s); 320 …_LIBCPP_CONSTEXPR _LIBCPP_HIDE_FROM_ABI basic_string_view(const _CharT* __s, size_type __len) _NOE… 321 : __data_(__s), 331 … __len == 0 || __s != nullptr, "string_view::string_view(_CharT *, size_t): received nullptr"); 355 _LIBCPP_CONSTEXPR _LIBCPP_HIDE_FROM_ABI basic_string_view(const _CharT* __s) 356 : __data_(__s), __size_(std::__char_traits_length_checked<_Traits>(__s)) {} 452 copy(_CharT* __s, size_type __n, size_type __pos = 0) const { 456 _Traits::copy(__s, data() + __pos, __rlen); [all …]
|
| H A D | regex | 1107 string_type __s(__f, __l); 1108 return __col_->transform(__s.data(), __s.data() + __s.size()); 1131 const string_type __s(__f, __l); 1132 string_type __d = __col_->transform(__s.data(), __s.data() + __s.size()); 1151 const string_type __s(__f, __l); 1152 string_type __d = __col_->transform(__s.data(), __s.data() + __s.size()); 1169 _LIBCPP_EXPORTED_FROM_ABI string __get_collation_name(const char* __s); 1175 string_type __s(__f, __l); 1177 if (!__s.empty()) { 1178 __r = std::__get_collation_name(__s.c_str()); [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/__string/ |
| H A D | char_traits.h | 118 static inline _LIBCPP_HIDE_FROM_ABI size_t length(const char_type* __s) _NOEXCEPT { 119 return std::__constexpr_strlen(__s); 122 …static _LIBCPP_HIDE_FROM_ABI const char_type* find(const char_type* __s, size_t __n, const char_ty… 125 return std::__constexpr_memchr(__s, __a, __n); 139 …static inline _LIBCPP_HIDE_FROM_ABI char_type* assign(char_type* __s, size_t __n, char_type __a) _… 140 std::fill_n(__s, __n, __a); 141 return __s; 210 …IBCPP_HIDE_FROM_ABI size_t length(const char_type* __s) _NOEXCEPT { return std::__constexpr_wcslen… 212 …static _LIBCPP_HIDE_FROM_ABI const char_type* find(const char_type* __s, size_t __n, const char_ty… 215 return std::__constexpr_wmemchr(__s, __a, __n); [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/__string/ |
| H A D | char_traits.h | 129 …_LIBCPP_HIDE_FROM_ABI size_t _LIBCPP_CONSTEXPR_SINCE_CXX17 length(const char_type* __s) _NOEXCEPT { 130 return std::__constexpr_strlen(__s); 134 find(const char_type* __s, size_t __n, const char_type& __a) _NOEXCEPT { 135 return std::__constexpr_memchr(__s, __a, __n); 152 assign(char_type* __s, size_t __n, char_type __a) _NOEXCEPT { 153 std::fill_n(__s, __n, __a); 154 return __s; 245 …static _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX17 size_t length(const char_type* __s) _NO… 246 return std::__constexpr_wcslen(__s); 250 find(const char_type* __s, size_t __n, const char_type& __a) _NOEXCEPT { [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/__filesystem/ |
| H A D | path.h | 110 _LIBCPP_HIDE_FROM_ABI static _ECharT const* __range_begin(_Str const& __s) { return __s.data(); } 112 …_HIDE_FROM_ABI static _ECharT const* __range_end(_Str const& __s) { return __s.data() + __s.length… 114 …DE_FROM_ABI static _ECharT __first_or_null(_Str const& __s) { return __s.empty() ? _ECharT{} : __s… 123 _LIBCPP_HIDE_FROM_ABI static _ECharT const* __range_begin(_Str const& __s) { return __s.data(); } 125 …_HIDE_FROM_ABI static _ECharT const* __range_end(_Str const& __s) { return __s.data() + __s.length… 127 …DE_FROM_ABI static _ECharT __first_or_null(_Str const& __s) { return __s.empty() ? _ECharT{} : __s… 257 _LIBCPP_HIDE_FROM_ABI static void __append_source(__path_string& __dest, _Source const& __s) { 259 __append_range(__dest, _Traits::__range_begin(__s), _Traits::__range_end(__s)); 285 _LIBCPP_HIDE_FROM_ABI static void __append_source(__path_string& __dest, _Source const& __s) { 287 __append_range(__dest, _Traits::__range_begin(__s), _Traits::__range_end(__s)); [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/__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() argument 55 return wcrtomb(__s, __wc, __ps); 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() argument 67 return mbrtowc(__pwc, __s, __n, __ps); 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() argument 77 return mbrlen(__s, __n, __ps); in __libcpp_mbrlen_l() 95 char* __s, size_t __n, locale_t __l, const char* __format, ...) { in __libcpp_snprintf_l() argument 99 int __res = vsnprintf(__s, __n, __format, __va); in __libcpp_snprintf_l() 105 char** __s, locale_t __l, const char* __format, ...) { in __libcpp_asprintf_l() argument 109 int __res = vasprintf(__s, __format, __va); in __libcpp_asprintf_l() [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/__ostream/ |
| H A D | basic_ostream.h | 106 basic_ostream& write(const char_type* __s, streamsize __n); 176 sentry __s(*this); 177 if (__s) { 216 sentry __s(*this); 217 if (__s) { 236 sentry __s(*this); 237 if (__s) { 263 sentry __s(*this); 264 if (__s) { 283 sentry __s(*this); [all …]
|
| /freebsd/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() argument 30 _LIBCPP_HIDE_FROM_ABI explicit format_error(const char* __s) : runtime_error(__s) {} in format_error() argument 38 [[noreturn]] inline _LIBCPP_HIDE_FROM_ABI void __throw_format_error(const char* __s) { in __throw_format_error() argument 40 throw format_error(__s); in __throw_format_error() 42 _LIBCPP_VERBOSE_ABORT("format_error was thrown in -fno-exceptions mode with message \"%s\"", __s); in __throw_format_error()
|
| /freebsd/contrib/llvm-project/libcxx/include/__locale_dir/locale_base_api/ |
| H A D | bsd_locale_fallbacks.h | 67 inline _LIBCPP_HIDE_FROM_ABI size_t __libcpp_wcrtomb_l(char* __s, wchar_t __wc, mbstate_t* __ps, lo… in __libcpp_wcrtomb_l() argument 69 return wcrtomb(__s, __wc, __ps); in __libcpp_wcrtomb_l() 79 __libcpp_mbrtowc_l(wchar_t* __pwc, const char* __s, size_t __n, mbstate_t* __ps, locale_t __l) { in __libcpp_mbrtowc_l() argument 81 return mbrtowc(__pwc, __s, __n, __ps); in __libcpp_mbrtowc_l() 89 inline _LIBCPP_HIDE_FROM_ABI size_t __libcpp_mbrlen_l(const char* __s, size_t __n, mbstate_t* __ps,… in __libcpp_mbrlen_l() argument 91 return mbrlen(__s, __n, __ps); in __libcpp_mbrlen_l() 109 char* __s, size_t __n, locale_t __l, const char* __format, ...) { in __libcpp_snprintf_l() argument 113 int __res = vsnprintf(__s, __n, __format, __va); in __libcpp_snprintf_l() 119 char** __s, locale_t __l, const char* __format, ...) { in __libcpp_asprintf_l() argument 123 int __res = vasprintf(__s, __format, __va); in __libcpp_asprintf_l() [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/__locale_dir/support/ |
| H A D | fuchsia.h | 93 inline _LIBCPP_HIDE_FROM_ABI size_t __wcrtomb(char* __s, wchar_t __ch, mbstate_t* __ps, __locale_t … in __wcrtomb() argument 95 return std::wcrtomb(__s, __ch, __ps); in __wcrtomb() 103 __mbrtowc(wchar_t* __pwc, const char* __s, size_t __n, mbstate_t* __ps, __locale_t __loc) { in __mbrtowc() argument 105 return std::mbrtowc(__pwc, __s, __n, __ps); in __mbrtowc() 111 inline _LIBCPP_HIDE_FROM_ABI size_t __mbrlen(const char* __s, size_t __n, mbstate_t* __ps, __locale… in __mbrlen() argument 113 return std::mbrlen(__s, __n, __ps); in __mbrlen() 134 char* __s, size_t __n, __locale_t __loc, const char* __format, _Args&&... __args) { in __snprintf() argument 136 return std::snprintf(__s, __n, __format, std::forward<_Args>(__args)...); in __snprintf() 140 char** __s, __locale_t __loc, const char* __format, _Args&&... __args) { in __asprintf() argument 142 return ::asprintf(__s, __format, std::forward<_Args>(__args)...); // non-standard in __asprintf() [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/__random/ |
| H A D | subtract_with_carry_engine.h | 31 template <class _UIntType, size_t __w, size_t __s, size_t __r> 50 template <class _UIntType, size_t __w, size_t __s, size_t __r> 64 static_assert(0 < __s, "subtract_with_carry_engine invalid parameters"); 65 static_assert(__s < __r, "subtract_with_carry_engine invalid parameters"); 74 static const size_t short_lag = __s; 126 template <class _UIntType, size_t __w, size_t __s, size_t __r> 127 const size_t subtract_with_carry_engine<_UIntType, __w, __s, __r>::word_size; 129 template <class _UIntType, size_t __w, size_t __s, size_t __r> 130 const size_t subtract_with_carry_engine<_UIntType, __w, __s, __r>::short_lag; 132 template <class _UIntType, size_t __w, size_t __s, size_t __r> [all …]
|