| /freebsd/contrib/llvm-project/clang/lib/Headers/ |
| H A D | __clang_cuda_intrinsics.h | 26 int __width = warpSize) { \ 28 ((warpSize - __width) << 8) | (__Mask)); \ 31 int __width = warpSize) { \ 33 ((warpSize - __width) << 8) | (__Mask)); \ 36 int __width = warpSize) { \ 38 ::__FnName(static_cast<int>(__val), __offset, __width)); \ 41 int __width = warpSize) { \ 49 __tmp.__a = ::__FnName(__tmp.__a, __offset, __width); \ 50 __tmp.__b = ::__FnName(__tmp.__b, __offset, __width); \ 56 int __width = warpSize) { \ [all …]
|
| H A D | gpuintrin.h | 171 uint32_t __width) { in __gpu_shuffle_idx_u64() argument 175 return ((uint64_t)__gpu_shuffle_idx_u32(__mask, __idx, __hi, __width) in __gpu_shuffle_idx_u64() 177 ((uint64_t)__gpu_shuffle_idx_u32(__mask, __idx, __lo, __width)); in __gpu_shuffle_idx_u64() 183 uint32_t __width) { in __gpu_shuffle_idx_f32() argument 186 __builtin_bit_cast(uint32_t, __x), __width)); in __gpu_shuffle_idx_f32() 192 uint32_t __width) { in __gpu_shuffle_idx_f64() argument 196 __builtin_bit_cast(uint64_t, __x), __width)); in __gpu_shuffle_idx_f64()
|
| H A D | amdgpuintrin.h | 137 uint32_t __width) { in __gpu_shuffle_idx_u32() argument 138 uint32_t __lane = __idx + (__gpu_lane_id() & ~(__width - 1)); in __gpu_shuffle_idx_u32()
|
| H A D | nvptxintrin.h | 140 uint32_t __width) { in __gpu_shuffle_idx_u32() argument 146 ((__gpu_num_lanes() - __width) << 8u) | 0x1f); in __gpu_shuffle_idx_u32()
|
| /freebsd/contrib/llvm-project/libcxx/include/__charconv/ |
| H A D | to_chars_integral.h | 64 if (__tx::digits <= __diff || __tx::__width(__value) <= __diff) in __to_chars_itoa() 84 if (__tx::digits <= __diff || __tx::__width(__value) <= __diff) in __to_chars_itoa() 115 _LIBCPP_HIDE_FROM_ABI static _LIBCPP_CONSTEXPR int __width(_Tp __value) _NOEXCEPT { 125 int __n = __width(__value); 150 _LIBCPP_HIDE_FROM_ABI static _LIBCPP_CONSTEXPR int __width(_Tp __value) _NOEXCEPT { 160 int __n = __width(__value); 185 _LIBCPP_HIDE_FROM_ABI static _LIBCPP_CONSTEXPR int __width(_Tp __value) _NOEXCEPT { 195 int __n = __width(__value); 222 return __itoa::__integral<_Base>::__width(__value);
|
| H A D | traits.h | 47 static _LIBCPP_CONSTEXPR_SINCE_CXX23 _LIBCPP_HIDE_FROM_ABI int __width(_Tp __v) { 70 static _LIBCPP_CONSTEXPR_SINCE_CXX23 _LIBCPP_HIDE_FROM_ABI int __width(_Tp __v) { 94 static _LIBCPP_CONSTEXPR_SINCE_CXX23 _LIBCPP_HIDE_FROM_ABI int __width(_Tp __v) {
|
| /freebsd/contrib/llvm-project/libcxx/include/__chrono/ |
| H A D | hh_mm_ss.h | 42 …_LIBCPP_HIDE_FROM_ABI static constexpr unsigned __width(uint64_t __n, uint64_t __d = 10, unsigned … 44 return 1 + __width(__n, __d % __n * 10, __w + 1); 50 __width(__CommonType::period::den) < 19 ? __width(__CommonType::period::den) : 6u;
|
| /freebsd/contrib/llvm-project/libcxx/include/__locale_dir/ |
| H A D | wbuffer_convert.h | 297 int __width = __cv_->encoding(); in seekoff() local 298 if (__cv_ == 0 || !__bufptr_ || (__width <= 0 && __off != 0) || sync()) in seekoff() 303 pos_type __r = __bufptr_->pubseekoff(__width * __off, __way, __om); in seekoff() 344 int __width = __cv_->encoding(); in sync() local 346 if (__width > 0) in sync() 347 __c += __width * (this->egptr() - this->gptr()); in sync()
|
| /freebsd/contrib/llvm-project/libcxx/include/__format/ |
| H A D | parser_std_format_spec.h | 1041 int __width = __width_estimation_table::__estimated_width(__cluster.__code_point_); 1048 if (__rounding == __column_width_rounding::__down && __result.__width_ + __width > __maximum) 1051 __result.__width_ += __width; 1158 size_t __width = std::min(__str.size(), __maximum); 1159 return {__width, __str.begin() + __width};
|
| H A D | formatter_output.h | 54 __padding_size(size_t __size, size_t __width, __format_spec::__alignment __align) { in __padding_size() argument 55 _LIBCPP_ASSERT_INTERNAL(__width > __size, "don't call this function when no padding is required"); in __padding_size() 59 size_t __fill = __width - __size; in __padding_size()
|
| /freebsd/usr.sbin/bsdconfig/share/ |
| H A D | dialog.subr | 382 local __height __width 429 if [ $__width -lt $__min_width ]; then 431 elif [ $__width -gt $__max_width_size_constrain ]; then 603 local __height=0 __width=0 __n 633 [ $__n -gt $__width ] && __width=$__n 641 [ $__n -gt $__width ] && __width=$__n 649 [ $__n -gt $__width ] && __width=$__n 658 [ $__n -gt $__width ] && __width=$__n 662 [ "$USE_XDIALOG" ] && __width=$(( $__width + $__width / 6 )) 664 setvar "$__var_width" $__width
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/ |
| H A D | fstream | 857 int __width = __cv_->encoding(); 858 if (__file_ == nullptr || (__width <= 0 && __off != 0) || sync()) 860 // __width > 0 || __off == 0 876 if (fseek(__file_, __width > 0 ? __width * __off : 0, __whence)) 880 if (::fseeko(__file_, __width > 0 ? __width * __off : 0, __whence)) 934 int __width = __cv_->encoding(); 936 if (__width > 0) 937 __c += __width * (this->egptr() - this->gptr());
|
| H A D | locale | 3590 int __width = __cv_->encoding(); 3591 if (__cv_ == 0 || !__bufptr_ || (__width <= 0 && __off != 0) || sync()) 3593 // __width > 0 || __off == 0, now check __way 3596 pos_type __r = __bufptr_->pubseekoff(__width * __off, __way, __om); 3637 int __width = __cv_->encoding(); 3639 if (__width > 0) 3640 __c += __width * (this->egptr() - this->gptr());
|
| /freebsd/contrib/llvm-project/libcxx/include/ |
| H A D | fstream | 951 int __width = __cv_->encoding(); 952 if (__file_ == nullptr || (__width <= 0 && __off != 0) || sync()) 954 // __width > 0 || __off == 0 969 if (__fseek(__file_, __width > 0 ? __width * __off : 0, __whence)) 1039 int __width = __cv_->encoding(); 1041 if (__width > 0) 1042 __c += __width * (this->egptr() - this->gptr());
|
| H A D | istream | 1221 streamsize const __width = __is.width(); 1224 if (__width <= 0) { 1227 … __n = std::__to_unsigned_like(__width) < __max_size ? static_cast<_Size>(__width) : __max_size;
|
| /freebsd/usr.sbin/bsdconfig/usermgmt/share/ |
| H A D | user_input.subr | 958 local __height __width __rows 959 eval f_dialog_radiolist_size __height __width __rows \ 974 $__height $__width $__rows \
|