/freebsd/contrib/llvm-project/libcxx/include/__charconv/ |
H A D | to_chars_base_10.h | 33 …INCE_CXX23 _LIBCPP_HIDE_FROM_ABI inline char* __append1(char* __first, uint32_t __value) noexcept { in __append1() 38 …INCE_CXX23 _LIBCPP_HIDE_FROM_ABI inline char* __append2(char* __first, uint32_t __value) noexcept { in __append2() 42 …INCE_CXX23 _LIBCPP_HIDE_FROM_ABI inline char* __append3(char* __first, uint32_t __value) noexcept { in __append3() 46 …INCE_CXX23 _LIBCPP_HIDE_FROM_ABI inline char* __append4(char* __first, uint32_t __value) noexcept { in __append4() 50 …INCE_CXX23 _LIBCPP_HIDE_FROM_ABI inline char* __append5(char* __first, uint32_t __value) noexcept { in __append5() 54 …INCE_CXX23 _LIBCPP_HIDE_FROM_ABI inline char* __append6(char* __first, uint32_t __value) noexcept { in __append6() 58 …INCE_CXX23 _LIBCPP_HIDE_FROM_ABI inline char* __append7(char* __first, uint32_t __value) noexcept { in __append7() 62 …INCE_CXX23 _LIBCPP_HIDE_FROM_ABI inline char* __append8(char* __first, uint32_t __value) noexcept { in __append8() 66 …INCE_CXX23 _LIBCPP_HIDE_FROM_ABI inline char* __append9(char* __first, uint32_t __value) noexcept { in __append9() 71 _LIBCPP_CONSTEXPR_SINCE_CXX23 _LIBCPP_HIDE_FROM_ABI char* __append10(char* __first, _Tp __value) no… in __append10() [all …]
|
H A D | from_chars_integral.h | 42 __sign_combinator(_It __first, _It __last, _Tp& __value, _Fn __f, _Ts... __args) { in __sign_combinator() 99 __subject_seq_combinator(_It __first, _It __last, _Tp& __value, _Fn __f, _Ts... __args) { in __subject_seq_combinator() 130 __from_chars_atoi(const char* __first, const char* __last, _Tp& __value) { in __from_chars_atoi() 151 __from_chars_atoi(const char* __first, const char* __last, _Tp& __value) { in __from_chars_atoi() 176 __from_chars_integral(const char* __first, const char* __last, _Tp& __value, int __base) { in __from_chars_integral() 217 __from_chars_integral(const char* __first, const char* __last, _Tp& __value, int __base) { in __from_chars_integral() 224 from_chars(const char* __first, const char* __last, _Tp& __value) { in from_chars() 230 from_chars(const char* __first, const char* __last, _Tp& __value, int __base) { in from_chars()
|
H A D | to_chars_integral.h | 51 __to_chars_itoa(char* __first, char* __last, _Tp __value, true_type) { in __to_chars_itoa() 63 __to_chars_itoa(char* __first, char* __last, _Tp __value, false_type) { in __to_chars_itoa() 76 __to_chars_itoa(char* __first, char* __last, __uint128_t __value, false_type) { in __to_chars_itoa() 100 __to_chars_integral(char* __first, char* __last, _Tp __value, int __base, true_type) { in __to_chars_integral()
|
/freebsd/contrib/llvm-project/libcxx/include/__format/ |
H A D | format_arg.h | 256 _LIBCPP_HIDE_FROM_ABI __basic_format_arg_value(bool __value) noexcept : __boolean_(__value) {} in __basic_format_arg_value() 257 _LIBCPP_HIDE_FROM_ABI __basic_format_arg_value(_CharT __value) noexcept : __char_type_(__value) {} in __basic_format_arg_value() 258 _LIBCPP_HIDE_FROM_ABI __basic_format_arg_value(int __value) noexcept : __int_(__value) {} in __basic_format_arg_value() 259 …_LIBCPP_HIDE_FROM_ABI __basic_format_arg_value(unsigned __value) noexcept : __unsigned_(__value) {} in __basic_format_arg_value() 260 …_LIBCPP_HIDE_FROM_ABI __basic_format_arg_value(long long __value) noexcept : __long_long_(__value)… in __basic_format_arg_value() 261 _LIBCPP_HIDE_FROM_ABI __basic_format_arg_value(unsigned long long __value) noexcept in __basic_format_arg_value() 264 _LIBCPP_HIDE_FROM_ABI __basic_format_arg_value(__int128_t __value) noexcept : __i128_(__value) {} in __basic_format_arg_value() 265 _LIBCPP_HIDE_FROM_ABI __basic_format_arg_value(__uint128_t __value) noexcept : __u128_(__value) {} in __basic_format_arg_value() 267 _LIBCPP_HIDE_FROM_ABI __basic_format_arg_value(float __value) noexcept : __float_(__value) {} in __basic_format_arg_value() 268 _LIBCPP_HIDE_FROM_ABI __basic_format_arg_value(double __value) noexcept : __double_(__value) {} in __basic_format_arg_value() [all …]
|
H A D | write_escaped.h | 71 __write_escaped_code_unit(basic_string<_CharT>& __str, char32_t __value, const _CharT* __prefix) { in __write_escaped_code_unit() 89 …ROM_ABI void __write_well_formed_escaped_code_unit(basic_string<_CharT>& __str, char32_t __value) { in __write_well_formed_escaped_code_unit() 99 …_FROM_ABI void __write_escape_ill_formed_code_unit(basic_string<_CharT>& __str, char32_t __value) { in __write_escape_ill_formed_code_unit() 105 __is_escaped_sequence_written(basic_string<_CharT>& __str, bool __last_escaped, char32_t __value) { in __is_escaped_sequence_written() 131 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr char32_t __to_char32(_CharT __value) { in __to_char32() 140 …basic_string<_CharT>& __str, char32_t __value, bool __last_escaped, __escape_quotation_mark __mark… in __is_escaped_sequence_written()
|
H A D | unicode.h | 81 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr bool __is_high_surrogate(char32_t __value) { in __is_high_surrogate() 85 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr bool __is_low_surrogate(char32_t __value) { in __is_low_surrogate() 90 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI inline constexpr bool __is_surrogate(char32_t __value) { in __is_surrogate() 95 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI inline constexpr bool __is_code_point(char32_t __value) { in __is_code_point() 100 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI inline constexpr bool __is_scalar_value(char32_t __value) { in __is_scalar_value() 171 char32_t __value = static_cast<unsigned char>(*__first_++) & 0x1f; in __consume() local 186 char32_t __value = static_cast<unsigned char>(*__first_++) & 0x0f; in __consume() local 207 char32_t __value = static_cast<unsigned char>(*__first_++) & 0x07; in __consume() local 239 _LIBCPP_HIDE_FROM_ABI constexpr bool __is_surrogate_pair_high(wchar_t __value) { in __is_surrogate_pair_high() 243 _LIBCPP_HIDE_FROM_ABI constexpr bool __is_surrogate_pair_low(wchar_t __value) { in __is_surrogate_pair_low() [all …]
|
H A D | formatter_floating_point.h | 59 _LIBCPP_HIDE_FROM_ABI char* __to_buffer(char* __first, char* __last, _Tp __value) { in __to_buffer() 66 _LIBCPP_HIDE_FROM_ABI char* __to_buffer(char* __first, char* __last, _Tp __value, chars_format __fm… in __to_buffer() 73 _LIBCPP_HIDE_FROM_ABI char* __to_buffer(char* __first, char* __last, _Tp __value, chars_format __fm… in __to_buffer()
|
H A D | formatter_output.h | 159 _LIBCPP_HIDE_FROM_ABI _OutIt __fill(_OutIt __out_it, size_t __n, _CharT __value) { in __fill() 188 …DE_FROM_ABI _OutIt __fill(_OutIt __out_it, size_t __n, __format_spec::__code_point<_CharT> __value… in __fill() 200 …DE_FROM_ABI _OutIt __fill(_OutIt __out_it, size_t __n, __format_spec::__code_point<_CharT> __value… in __fill() 206 …DE_FROM_ABI _OutIt __fill(_OutIt __out_it, size_t __n, __format_spec::__code_point<_CharT> __value… in __fill()
|
/freebsd/contrib/llvm-project/clang/lib/Headers/ |
H A D | ptrauth.h | 93 #define ptrauth_strip(__value, __key) __builtin_ptrauth_strip(__value, __key) argument 123 #define ptrauth_sign_constant(__value, __key, __data) \ argument 138 #define ptrauth_sign_unauthenticated(__value, __key, __data) \ argument 160 #define ptrauth_auth_and_resign(__value, __old_key, __old_data, __new_key, \ argument 182 #define ptrauth_auth_function(__value, __old_key, __old_data) \ argument 195 #define ptrauth_auth_data(__value, __old_key, __old_data) \ argument 247 #define ptrauth_sign_generic_data(__value, __data) \ argument 258 #define ptrauth_strip(__value, __key) \ argument 271 #define ptrauth_sign_constant(__value, __key, __data) \ argument 278 #define ptrauth_sign_unauthenticated(__value, __key, __data) \ argument [all …]
|
H A D | ptwriteintrin.h | 22 _ptwrite32(unsigned int __value) { in _ptwrite32() 29 _ptwrite64(unsigned long long __value) { in _ptwrite64()
|
H A D | movdirintrin.h | 19 _directstoreu_u32 (void *__dst, unsigned int __value) in _directstoreu_u32() 29 _directstoreu_u64 (void *__dst, unsigned long __value) in _directstoreu_u64()
|
/freebsd/contrib/llvm-project/libcxx/include/__chrono/ |
H A D | formatter.h | 88 …t_sub_seconds(basic_stringstream<_CharT>& __sstr, const chrono::duration<_Rep, _Period>& __value) { in __format_sub_seconds() 122 …P_HIDE_FROM_ABI void __format_sub_seconds(basic_stringstream<_CharT>& __sstr, const _Tp& __value) { in __format_sub_seconds() 128 __format_sub_seconds(basic_stringstream<_CharT>& __sstr, const chrono::hh_mm_ss<_Duration>& __value… in __format_sub_seconds() 146 …s(basic_stringstream<_CharT>& __sstr, const chrono::zoned_time<_Duration, _TimeZonePtr>& __value) { in __format_sub_seconds() 227 _LIBCPP_HIDE_FROM_ABI __time_zone __convert_to_time_zone([[maybe_unused]] const _Tp& __value) { in __convert_to_time_zone() 243 …basic_stringstream<_CharT>& __sstr, const _Tp& __value, basic_string_view<_CharT> __chrono_specs) { in __format_chrono_using_chrono_specs() 410 _LIBCPP_HIDE_FROM_ABI constexpr bool __weekday_ok(const _Tp& __value) { in __weekday_ok() 461 _LIBCPP_HIDE_FROM_ABI constexpr bool __weekday_name_ok(const _Tp& __value) { in __weekday_name_ok() 512 _LIBCPP_HIDE_FROM_ABI constexpr bool __date_ok(const _Tp& __value) { in __date_ok() 563 _LIBCPP_HIDE_FROM_ABI constexpr bool __month_name_ok(const _Tp& __value) { in __month_name_ok() [all …]
|
/freebsd/contrib/llvm-project/libcxx/src/ |
H A D | charconv.cpp | 49 to_chars_result to_chars(char* __first, char* __last, float __value, chars_format __fmt) { in to_chars() argument 53 to_chars_result to_chars(char* __first, char* __last, double __value, chars_format __fmt) { in to_chars() argument 45 to_chars(char * __first,char * __last,float __value) to_chars() argument 58 to_chars(char * __first,char * __last,float __value,chars_format __fmt) to_chars() argument 62 to_chars(char * __first,char * __last,double __value,chars_format __fmt) to_chars() argument 66 to_chars(char * __first,char * __last,long double __value,chars_format __fmt) to_chars() argument 71 to_chars(char * __first,char * __last,float __value,chars_format __fmt,int __precision) to_chars() argument 76 to_chars(char * __first,char * __last,double __value,chars_format __fmt,int __precision) to_chars() argument 81 to_chars(char * __first,char * __last,long double __value,chars_format __fmt,int __precision) to_chars() argument [all...] |
/freebsd/contrib/llvm-project/libcxx/include/__algorithm/ |
H A D | search_n.h | 35 … _Iter __first, _Sent __last, _SizeT __count, const _Type& __value, _Pred& __pred, _Proj& __proj) { in __search_n_forward_impl() 72 …_Iter __first, _Sent __last, _SizeT __count, const _Type& __value, _Pred& __pred, _Proj& __proj, _… in __search_n_random_access_impl() 119 __search_n_impl(_Iter __first, _Sent __last, _DiffT __count, const _Type& __value, _Pred& __pred, _… in __search_n_impl() 134 __search_n_impl(_Iter1 __first, _Sent1 __last, _DiffT __count, const _Type& __value, _Pred& __pred,… in __search_n_impl() 140 …_ForwardIterator __first, _ForwardIterator __last, _Size __count, const _Tp& __value, _BinaryPredi… in search_n() 149 search_n(_ForwardIterator __first, _ForwardIterator __last, _Size __count, const _Tp& __value) { in search_n()
|
H A D | find.h | 46 __find(_Iter __first, _Sent __last, const _Tp& __value, _Proj& __proj) { in __find() 60 … _LIBCPP_CONSTEXPR_SINCE_CXX14 _Tp* __find(_Tp* __first, _Tp* __last, const _Up& __value, _Proj&) { in __find() 73 … _LIBCPP_CONSTEXPR_SINCE_CXX14 _Tp* __find(_Tp* __first, _Tp* __last, const _Up& __value, _Proj&) { in __find() 90 __find(_Tp* __first, _Tp* __last, const _Up& __value, _Proj& __proj) { in __find() 135 …terator<_Cp, _IsConst> __first, __bit_iterator<_Cp, _IsConst> __last, const _Tp& __value, _Proj&) { in __find() 151 __find(_SegmentedIterator __first, _SegmentedIterator __last, const _Tp& __value, _Proj& __proj) { in __find() 171 find(_InputIterator __first, _InputIterator __last, const _Tp& __value) { in find()
|
H A D | lower_bound.h | 33 const _Type& __value, in __lower_bound_bisecting() 62 __lower_bound_onesided(_ForwardIterator __first, _Sent __last, const _Type& __value, _Comp& __comp,… in __lower_bound_onesided() 88 __lower_bound(_ForwardIterator __first, _Sent __last, const _Type& __value, _Comp& __comp, _Proj& _… in __lower_bound() 95 lower_bound(_ForwardIterator __first, _ForwardIterator __last, const _Tp& __value, _Compare __comp)… in lower_bound() 103 lower_bound(_ForwardIterator __first, _ForwardIterator __last, const _Tp& __value) { in lower_bound()
|
H A D | fill.h | 27 __fill(_ForwardIterator __first,_ForwardIterator __last,const _Tp & __value,forward_iterator_tag) __fill() argument 36 __fill(_RandomAccessIterator __first,_RandomAccessIterator __last,const _Tp & __value,random_access_iterator_tag) __fill() argument 44 fill(_ForwardIterator __first,_ForwardIterator __last,const _Tp & __value) fill() argument
|
H A D | upper_bound.h | 35 __upper_bound(_Iter __first, _Sent __last, const _Tp& __value, _Compare&& __comp, _Proj&& __proj) { in __upper_bound() 52 upper_bound(_ForwardIterator __first, _ForwardIterator __last, const _Tp& __value, _Compare __comp)… in upper_bound() 60 upper_bound(_ForwardIterator __first, _ForwardIterator __last, const _Tp& __value) { in upper_bound()
|
H A D | equal_range.h | 41 __equal_range(_Iter __first, _Sent __last, const _Tp& __value, _Compare&& __comp, _Proj&& __proj) { in __equal_range() 64 equal_range(_ForwardIterator __first, _ForwardIterator __last, const _Tp& __value, _Compare __comp)… in equal_range() 77 equal_range(_ForwardIterator __first, _ForwardIterator __last, const _Tp& __value) { in equal_range()
|
H A D | half_positive.h | 32 return __value / 2; in __half_positive() argument 44 __half_positive(_Tp __value) __half_positive() argument
|
H A D | fill_n.h | 70 __fill_n(__bit_iterator<_Cp, false> __first, _Size __n, const bool& __value) { in __fill_n() 82 __fill_n(_OutputIterator __first, _Size __n, const _Tp& __value) { in __fill_n() 90 fill_n(_OutputIterator __first, _Size __n, const _Tp& __value) { in fill_n()
|
H A D | binary_search.h | 26 binary_search(_ForwardIterator __first, _ForwardIterator __last, const _Tp& __value, _Compare __com… in binary_search() 33 binary_search(_ForwardIterator __first, _ForwardIterator __last, const _Tp& __value) { in binary_search()
|
H A D | count.h | 35 __count(_Iter __first, _Sent __last, const _Tp& __value, _Proj& __proj) { in __count() 75 …terator<_Cp, _IsConst> __first, __bit_iterator<_Cp, _IsConst> __last, const _Tp& __value, _Proj&) { in __count() 83 count(_InputIterator __first, _InputIterator __last, const _Tp& __value) { in count()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_ptrauth.h | 19 # define ptrauth_strip(__value, __key) \ argument 32 # define ptrauth_auth_data(__value, __old_key, __old_data) __value argument 36 # define ptrauth_strip(__value, __key) __value argument 37 # define ptrauth_auth_data(__value, __old_key, __old_data) __value argument
|
/freebsd/contrib/llvm-project/libcxx/include/__atomic/ |
H A D | cxx_atomic_impl.h | 115 __cxx_atomic_exchange(volatile __cxx_atomic_base_impl<_Tp>* __a, _Tp __value, memory_order __order)… in __cxx_atomic_exchange() 123 _LIBCPP_HIDE_FROM_ABI _Tp __cxx_atomic_exchange(__cxx_atomic_base_impl<_Tp>* __a, _Tp __value, memo… in __cxx_atomic_exchange() 134 _Tp __value, in __cxx_atomic_compare_exchange_strong() 148 …__cxx_atomic_base_impl<_Tp>* __a, _Tp* __expected, _Tp __value, memory_order __success, memory_ord… in __cxx_atomic_compare_exchange_strong() 162 _Tp __value, in __cxx_atomic_compare_exchange_weak() 176 …__cxx_atomic_base_impl<_Tp>* __a, _Tp* __expected, _Tp __value, memory_order __success, memory_ord… in __cxx_atomic_compare_exchange_weak()
|